* src/misc/bddalloc.cc (bdd_allocator::initialize):
Disable the default GC handler. Reported by Kristin Yvonne Rozier <kyrozier@cs.rice.edu>.
This commit is contained in:
parent
894c864fd5
commit
089c315c28
2 changed files with 11 additions and 0 deletions
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
namespace spot
|
||||
{
|
||||
|
||||
bool bdd_allocator::initialized = false;
|
||||
|
||||
bdd_allocator::bdd_allocator()
|
||||
|
|
@ -49,6 +50,10 @@ namespace spot
|
|||
// for large examples advocated by the BuDDy manual.
|
||||
bdd_init(1000000, 10000);
|
||||
bdd_setvarnum(2);
|
||||
// Disable the default GC handler. (Note that this will only be
|
||||
// done if Buddy is initialized by Spot. Otherwise we prefer not
|
||||
// to overwrite a handler that might have been set by the user.)
|
||||
bdd_gbc_hook(0);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue