mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
move std::function initializer to beginning of class
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f6f594e21d
commit
e16acd0965
2 changed files with 4 additions and 2 deletions
|
@ -501,6 +501,8 @@ bool theory_seq::fixed_length(expr* len_e, bool is_zero) {
|
|||
TRACE("seq", tout << "Fixed: " << mk_bounded_pp(e, m, 2) << " " << lo << "\n";);
|
||||
literal a = mk_eq(len_e, m_autil.mk_numeral(lo, true), false);
|
||||
literal b = mk_seq_eq(seq, e);
|
||||
if (ctx.get_assignment(a) == l_false || ctx.get_assignment(b) == l_true)
|
||||
return false;
|
||||
add_axiom(~a, b);
|
||||
if (!ctx.at_base_level()) {
|
||||
m_trail_stack.push(push_replay(alloc(replay_fixed_length, m, len_e)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue