3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

Bugfix for QF_FP tactic

This commit is contained in:
Christoph M. Wintersteiger 2015-06-12 12:58:07 +01:00
parent ca31c979fe
commit f84d6bf5bb

View file

@ -53,7 +53,7 @@ struct has_fp_to_real_predicate {
class has_fp_to_real_probe : public probe {
public:
virtual result operator()(goal const & g) {
return !test<has_fp_to_real_predicate>(g);
return test<has_fp_to_real_predicate>(g);
}
virtual ~has_fp_to_real_probe() {}