The issue is not triggered anymore after PR #2059 but the test case is
good to have for changes in MiniSat code.
regress0/push-pop/inc-define.smt2 \
regress0/push-pop/inc-double-u.smt2 \
regress0/push-pop/incremental-subst-bug.cvc \
+ regress0/push-pop/issue1986.smt2 \
regress0/push-pop/quant-fun-proc-unfd.smt2 \
regress0/push-pop/simple_unsat_cores.smt2 \
regress0/push-pop/test.00.cvc \
--- /dev/null
+; EXPECT: sat
+; EXPECT: sat
+; EXPECT: sat
+(set-logic SAT)
+(set-option :incremental true)
+(declare-fun v1 () Bool)
+(declare-fun v2 () Bool)
+(declare-fun v3 () Bool)
+(declare-fun v4 () Bool)
+(declare-fun v5 () Bool)
+(check-sat)
+(push)
+(assert (or (and (or true v1) (and (and (or v1 v1) true) true)) (or v2 (and v2 false))))
+(check-sat)
+(assert (or (and (and v3 (and (or v4 v3) (and v1 false))) (and (and (or v2 true) v5) (and (and false v1) true))) v3))
+(push)
+(pop)
+(pop)
+(assert true)
+(push)
+(assert (and (or v4 v5) true))
+(check-sat)