* NEWS, buddy/src/bddop.c, m4/valgrind.m4: s/wether/whether/.
This commit is contained in:
parent
2ea652d32c
commit
8cb68d76b5
3 changed files with 3 additions and 3 deletions
2
NEWS
2
NEWS
|
|
@ -12,7 +12,7 @@ New in spot 0.9.2 (2012-07-02):
|
||||||
node table for better cache-friendliness. The resulting speedup
|
node table for better cache-friendliness. The resulting speedup
|
||||||
is around 5% on BDD-intensive algorithms.
|
is around 5% on BDD-intensive algorithms.
|
||||||
- A new BDD operation, called bdd_implies() has been added to
|
- A new BDD operation, called bdd_implies() has been added to
|
||||||
BuDDy to check wether one BDD implies another. This benefits
|
BuDDy to check whether one BDD implies another. This benefits
|
||||||
mostly the simulation and degeneralization algorithms of Spot.
|
mostly the simulation and degeneralization algorithms of Spot.
|
||||||
- A new offline implementation of the degeneralization (which
|
- A new offline implementation of the degeneralization (which
|
||||||
had always been performed on-the-fly so far) available. This
|
had always been performed on-the-fly so far) available. This
|
||||||
|
|
|
||||||
|
|
@ -903,7 +903,7 @@ NAME {* bdd\_implies *}
|
||||||
SECTION {* operator *}
|
SECTION {* operator *}
|
||||||
SHORT {* check whether one BDD implies another *}
|
SHORT {* check whether one BDD implies another *}
|
||||||
PROTO {* int bdd_setxor(BDD l, BDD r) *}
|
PROTO {* int bdd_setxor(BDD l, BDD r) *}
|
||||||
DESCR {* Check wether $l$ implies $r$, or whether $r$ contains $l$. *}
|
DESCR {* Check whether $l$ implies $r$, or whether $r$ contains $l$. *}
|
||||||
RETURN {* 1 if $l$ implies $r$, 0 otherwise *}
|
RETURN {* 1 if $l$ implies $r$, 0 otherwise *}
|
||||||
*/
|
*/
|
||||||
int bdd_implies(BDD l, BDD r)
|
int bdd_implies(BDD l, BDD r)
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ AC_DEFUN([_AX_CHECK_VALGRIND_SANITY],
|
||||||
AC_DEFUN([AX_CHECK_VALGRIND], [
|
AC_DEFUN([AX_CHECK_VALGRIND], [
|
||||||
AC_CHECK_PROG([VALGRIND], [valgrind], [valgrind])
|
AC_CHECK_PROG([VALGRIND], [valgrind], [valgrind])
|
||||||
if test -n "$VALGRIND"; then
|
if test -n "$VALGRIND"; then
|
||||||
AC_CACHE_CHECK([wether valgrind is sane],
|
AC_CACHE_CHECK([whether valgrind is sane],
|
||||||
[ax_cv_valgrind_sanity],
|
[ax_cv_valgrind_sanity],
|
||||||
[_AX_CHECK_VALGRIND_SANITY([ax_cv_valgrind_sanity=yes],
|
[_AX_CHECK_VALGRIND_SANITY([ax_cv_valgrind_sanity=yes],
|
||||||
[ax_cv_valgrind_sanity=no])])
|
[ax_cv_valgrind_sanity=no])])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue