* src/tgbaalgos/magic.hh, src/tgbaalgos/magic.cc,

src/tgbaalgos/se05.hh, src/tgbaalgos/se05.cc: Provide wrapper
functions that read the hash-map size from a "bsh" option.
* src/tgbatest/randtgba.cc: Simplify.
This commit is contained in:
Alexandre Duret-Lutz 2005-02-17 16:09:56 +00:00
parent fed4b6f05c
commit c1d0cab3af
6 changed files with 61 additions and 43 deletions

View file

@ -675,4 +675,13 @@ namespace spot
return new se05_search<bsh_se05_search_heap>(a, size, o);
}
emptiness_check*
se05(const tgba *a, option_map o)
{
size_t size = o.get("bsh");
if (size)
return bit_state_hashing_se05_search(a, size, o);
return explicit_se05_search(a, o);
}
}