mirror of
https://github.com/Z3Prover/z3
synced 2025-08-10 05:00:51 +00:00
fixes to lookahead
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
964102726d
commit
c870b77366
11 changed files with 40 additions and 11 deletions
|
@ -162,9 +162,13 @@ bool solver::is_literal(ast_manager& m, expr* e) {
|
|||
return is_uninterp_const(e) || (m.is_not(e, e) && is_uninterp_const(e));
|
||||
}
|
||||
|
||||
#if 0
|
||||
expr_ref solver::lookahead(expr_ref_vector const& candidates) {
|
||||
std::cout << "lookahead: " << candidates.size() << "\n";
|
||||
INVOKE_DEBUGGER();
|
||||
ast_manager& m = candidates.get_manager();
|
||||
return expr_ref(m.mk_true(), m);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue