* src/misc/bddalloc.cc (bdd_allocator::initialize): Augment

bdd_init()'s arguments.
This commit is contained in:
Alexandre Duret-Lutz 2003-10-14 08:49:31 +00:00
parent c7bbe60f4c
commit fec0d60886
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-10-14 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/misc/bddalloc.cc (bdd_allocator::initialize): Augment
bdd_init()'s arguments.
2003-10-08 Alexandre Duret-Lutz <adl@src.lip6.fr> 2003-10-08 Alexandre Duret-Lutz <adl@src.lip6.fr>
* iface/gspn/ltlgspn.cc: Use command-line options to * iface/gspn/ltlgspn.cc: Use command-line options to

View file

@ -20,7 +20,11 @@ namespace spot
if (initialized) if (initialized)
return; return;
initialized = true; initialized = true;
bdd_init(50000, 5000); // The values passed to bdd_init should depends on the problem
// the library is solving. It would be nice to allow users
// to tune this. By the meantime, we take the typical values
// for large examples advocated by the BuDDy manual.
bdd_init(1000000, 10000);
bdd_setvarnum(varnum); bdd_setvarnum(varnum);
} }