3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00

Silently bailing out on quantifiers in lackr.

This commit is contained in:
Mikolas Janota 2016-03-29 19:19:07 +01:00
parent 1a65153872
commit 363f57a2f4
2 changed files with 17 additions and 17 deletions

View file

@ -95,7 +95,7 @@ class lackr {
lackr_stats& m_st;
bool m_is_init;
void init();
bool init();
lbool eager();
lbool lazy();
@ -118,6 +118,6 @@ class lackr {
//
// Collect all uninterpreted terms, skipping 0-arity.
//
void collect_terms();
bool collect_terms();
};
#endif /* LACKR_H_ */