3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 20:38:43 +00:00

bugfix for smt::model_finder::set_cancel

follow-up to fixed #178
This commit is contained in:
Christoph M. Wintersteiger 2015-07-29 17:18:15 +01:00
parent b9e273800c
commit 7c282d3719

View file

@ -2464,7 +2464,7 @@ namespace smt {
void set_cancel(bool f) {
m_cancel = f;
m_info->set_cancel(f);
if (m_info) m_info->set_cancel(f);
}
};