- 30 Oct, 2014 1 commit
-
-
Alexandre Duret-Lutz authored
* buddy/src/bdd.h, buddy/src/bvec.h, buddy/src/fdd.h: Rename as... * buddy/src/bddx.h, buddy/src/bvecx.h, buddy/src/fddx.h: ... these. * buddy/src/Makefile.am: Build libbddx.la instead of libbdd.la. * buddy/examples/Makefile.def: Use it. * Makefile.am, buddy/src/bddtest.cxx, buddy/src/bvec.c, buddy/src/cppext.cxx, buddy/src/fdd.c, buddy/src/imatrix.h, buddy/src/kernel.h, buddy/examples/adder/adder.cxx, buddy/examples/bddcalc/parser_.h, buddy/examples/bddtest/bddtest.cxx, buddy/examples/cmilner/cmilner.c, buddy/examples/fdd/fdd.cxx, buddy/examples/milner/milner.cxx, buddy/examples/money/money.cxx, buddy/examples/queen/queen.cxx, buddy/examples/solitare/solitare.cxx, m4/buddy.m4, src/ltlvisit/apcollect.hh, src/ltlvisit/simplify.hh, src/misc/bddlt.hh, src/misc/bddop.hh, src/misc/minato.hh, src/priv/acccompl.hh, src/priv/accconv.hh, src/priv/accmap.hh, src/priv/bddalloc.cc, src/tgba/bdddict.hh, src/tgba/bddprint.hh, src/tgba/tgbamask.hh, src/tgba/tgbasafracomplement.cc, src/tgbaalgos/emptiness.hh, src/tgbaalgos/gtec/sccstack.hh, src/tgbaalgos/neverclaim.cc, src/tgbaalgos/powerset.cc, src/tgbaalgos/sccfilter.hh, src/tgbaalgos/sccinfo.hh, src/tgbaalgos/weight.hh, wrap/python/buddy.i: Adjust. * NEWS, README: Document it.
-
- 28 Oct, 2014 1 commit
-
-
Alexandre Duret-Lutz authored
The double result is never used with a triple keys, so we can pack the cache entry more tightly. * src/cache.h: Reorganize the cache entry the structure. * src/cache.c: Cleanup the code while we are at it. * src/bddop.c: Adjust to accesses to cache entries.
-
- 11 Aug, 2014 2 commits
-
-
Alexandre Duret-Lutz authored
This can only cause failure when running under valgrind (i.e., in the test suite), but is not a problem in practice as the test is certain to fail the entry->c check whenever entry->b is uninitialized. * src/bddop.c (bdd_implies): Here.
-
Alexandre Duret-Lutz authored
This can only cause failure when running under valgrind (i.e., in the test suite), but is not a problem in practice as the test is certain to fail the entry->c check whenever entry->b is uninitialized. * src/bddop.c (bdd_implies): Here.
-
- 20 Jun, 2014 1 commit
-
-
Alexandre Duret-Lutz authored
* src/bdd.h, src/cppext.cxx: Handle bddtrue and bddfalse using special types.
-
- 12 Feb, 2014 1 commit
-
-
Alexandre Duret-Lutz authored
* configure.ac: Enable C++11 mode. * src/bdd.h: Use noexport, and add a move constructor and move assignment operator. The move version of these method do not have to increment the reference counter, saving time. On a small test run, this change saved 24% of the calls to bdd_addref_nc().
-
- 29 Jul, 2013 2 commits
-
-
Alexandre Duret-Lutz authored
* configure.ac: Check gcc and g++ for -fvisibility and -fvisibility-inlines-hidden. Add these options to CFLAGS and CXXFLAGS. * m4/ax_check_compile_flag.m4: New file. * src/Makefile.am: Build BuDDy as a single library, reverting part of the changes introduced in my previous patch to this file. Since the options are set in CFLAGS/CXXFLAGS, there is no possibility for -fvisibility-inlines-hidden to be passed to the C compiler.
-
Alexandre Duret-Lutz authored
* src/bdd.h, src/bvec.h, src/fdd.h: Declare all exported symbols using BUDDY_API, a new macro that sets visibility=default. * src/Makefile.am: Compile with -fvisibility=hidden by default, and compile the C++ part with -fvisibility-inlines-hidden as well.
-
- 24 Dec, 2012 1 commit
-
-
Alexandre Duret-Lutz authored
* src/bdd.h: Make all inplace operators return a reference.
-
- 28 Nov, 2012 1 commit
-
-
Alexandre Duret-Lutz authored
-
- 22 Aug, 2012 1 commit
-
-
Alexandre Duret-Lutz authored
-
- 20 Jun, 2012 1 commit
-
-
Alexandre Duret-Lutz authored
* examples/bddcalc/Makefile.am (ACLOCAL_AMFLAGS): Add -I. for parse.c. Reported by Pierre Parutto.
-
- 19 Jun, 2012 3 commits
-
-
Alexandre Duret-Lutz authored
* src/bdd.h (bdd_implies): New function. * src/bddop.c (bdd_implies): Implement it. (CACHEID_IMPLIES, IMPLIES_HASH): New helper macros.
-
Alexandre Duret-Lutz authored
The unicity table was mixed with the bddNode table for now apparent reason. After the hash of some node is computed, bddnodes[hash] did only contain some random node (not the one looked for) whose .hash member would point to the actual node with this hash. So that's a two step lookup. With this patch, we sill have a two step lookup, but the .hash member have been moved to a separate array. A consequence is that bddNode is now 16-byte long (instead of 20) so it will never span across two cache lines. * src/kernel.h (bddNode): Remove the hash member, and move it... (bddhash): ... as this new separate table. * src/kernel.c, src/reorder.c: Adjust all code.
-
Alexandre Duret-Lutz authored
* examples/bddcalc/parser.yxx: Rename as ... * examples/bddcalc/parser.y: ... this. * examples/bddcalc/parser_.cxx: New file that includes parser.c. * examples/bddcalc/Makefile.am: Adjust. * examples/bddcalc/parser.hxx: Delete this unused file.
-
- 28 Apr, 2012 1 commit
-
-
Alexandre Duret-Lutz authored
* src/kernel.h (PAIR, TRIPLE): Redefine these hash functions using something that is simpler to compute.
-
- 28 Aug, 2011 2 commits
-
-
Alexandre Duret-Lutz authored
remove a clang++-2.9 warning.
-
Alexandre Duret-Lutz authored
-
- 14 Jun, 2011 1 commit
-
-
Alexandre Duret-Lutz authored
reordering operands of commutative operators.
-
- 09 Jun, 2011 1 commit
-
-
Alexandre Duret-Lutz authored
BddCache_lookup return an entry from a Not operation. * src/bddop.c (apply_rec, simplify_rec): When checking the cache entry, always check entry->a and entry->c before checking entry->b, because the "not_rec()" function does not initialize the latter.
-
- 07 Jun, 2011 1 commit
-
-
Alexandre Duret-Lutz authored
(reachable_states, has_deadlocks): Declare as static functions, to suppress a GCC warning.
-
- 30 Apr, 2011 3 commits
-
-
Alexandre Duret-Lutz authored
This avoids a library call to bdd_addref or bdd_delref. * src/kernel.c (bdd_delref_nc, bdd_addref_nc): New function, that work only on BDD that are not constant. * src/cpext.cxx (bdd::operator=): Move... * src/bdd.hh (bdd::operator=): ... here. (bdd::bdd, bdd::~bdd, bdd::operator=): Inline the "is bdd constant" check and call bdd_delref_nc/bdd_addref_nc only otherwise.
-
Alexandre Duret-Lutz authored
* src/bdd.h (__likely, __unlikely): Introduce these two macros. * src/bddop.c, src/kerner.c: Use them in many situations.
-
Alexandre Duret-Lutz authored
-
- 10 Apr, 2011 2 commits
-
-
Alexandre Duret-Lutz authored
Fix some warnings reported by gcc. * buddy/src/kernel.c (errorstrings): Mark these as const. * buddy/src/reorder.c (reorder_gbc): Fix prototype. (siftTestCmp): Add missing const in cast. (bdd_reorder_auto): Actually call bdd_reorder_ready().
-
Alexandre Duret-Lutz authored
Add support for --enable-devel and similar macros. * m4/debug.m4: Rename to ... * m4/bdebug.m4: ... this. * m4/debug.m4, m4/devel.m4, m4/gccoptim.m4, m4/ndebug.m4: New file. * m4/gccwarns.m4: Fix usage of cache variable. Fix shell syntax. Do not check for -Waggregate-return. Update CFLAGS. * configure.ac: Adjust to handle --enable-devel and similar macros in the same way as Spot.
-
- 05 Apr, 2011 1 commit
-
-
Alexandre Duret-Lutz authored
Tag functions with attributes pure, const, or noreturn. * src/bdd.h (__purefn, __constfn, __noreturnfn): Define new macros. * src/bdd.h, src/bddio.c, src/bvec.h, src/imatrix.h: Use them to tag many functions as suggested by -Wsuggest-attribute=pure, -Wsuggest-attribute=const, -Wsuggest-attribute=noreturn.
-
- 04 Apr, 2011 1 commit
-
-
Alexandre Duret-Lutz authored
Remove more sanity checks when NDEBUG is set. * src/kernel.h (CHECKnc): New macro. * src/kernel.c (bdd_var, bdd_low, bdd_high, bdd_ithvar, bdd_nithvar): Use it.
-
- 03 Apr, 2011 3 commits
-
-
Alexandre Duret-Lutz authored
* src/kernel.h (CHECK, CHECKa, CHECKn): Disable if NDEBUG is set.
-
Alexandre Duret-Lutz authored
Fix declaration of bddproduced. * src/reorder.c (bddproduced): Declare a longint, to match the definition in kerner.c.
-
Alexandre Duret-Lutz authored
* buddy/src/kernel.c (bdd_addref, bdd_delref): Disable sanity checks when compiled with NDEBUG.
-
- 27 Feb, 2011 1 commit
-
-
Alexandre Duret-Lutz authored
* examples/cmilner/Makefile.am (cmilner_LDADD): Link with -lm, to find the pow() function.
-
- 07 Nov, 2010 1 commit
-
-
Alexandre Duret-Lutz authored
* src/bddop.c (bdd_setxor): New function. * src/bdd.h (bdd_setxor): New function.
-
- 22 Jan, 2010 2 commits
-
-
Alexandre Duret-Lutz authored
This reverts commit d462f50b. Conflicts: buddy/ChangeLog
-
Alexandre Duret-Lutz authored
Get rid of some "deprecated conversion from string constant to `char*'" warnings. * examples/bddcalc/parser_.h (yyerror): Declare the format as a "const char*". * examples/bddcalc/parser.yxx (yyerror): Likewise.
-
- 21 Jan, 2010 1 commit
-
-
Alexandre Duret-Lutz authored
* src/bddio.c (bdd_load): Check the return value of fscanf() to kill a warning.
-
- 09 Dec, 2009 1 commit
-
-
Alexandre Duret-Lutz authored
Inline bdd_addref() and bdd_delref() to speedup BDD operations. * src/kernel.c, src/kernel.h (bdd_addref, bdd_delref): Move these functions and there associated global variables... * src/bdd.c (bdd_error): ... and this function ... * src/bdd.h (bdd_addref, bdd_delref, bdd_error): ...here so that they can be inlined.
-
- 23 Nov, 2009 1 commit
-
-
Alexandre Duret-Lutz authored
Introduce bdd_satprefix, to speedup spot::minato(). * src/bdd.h (bdd_satprefix): New function. * src/bddop.c (bdd_satprefix, bdd_sat_prefixrec): New functions.
-
- 01 Oct, 2009 1 commit
-
-
Alexandre Duret-Lutz authored
-
- 08 Sep, 2009 1 commit
-
-
Alexandre Duret-Lutz authored
-