3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-18 11:58:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-02 08:05:43 -07:00
parent 57d430b3fd
commit 8290cfadcc
2 changed files with 10 additions and 1 deletions

View file

@ -271,6 +271,8 @@ class parallel_tactic : public tactic {
std::string r = get_solver().reason_unknown();
std::string inc("(incomplete");
m_giveup |= r.compare(0, inc.size(), inc) == 0;
inc = "(sat.giveup";
m_giveup |= r.compare(0, inc.size(), inc) == 0;
return m_giveup;
}