3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-21 02:30:23 +00:00

allow for propagations the trigger make-feasible check

This commit is contained in:
Nikolaj Bjorner 2023-10-19 16:08:35 -07:00
parent 8c00181815
commit 97058b0d5d
5 changed files with 23 additions and 21 deletions

View file

@ -51,5 +51,6 @@ namespace nla {
vector<nla::ineq> const& literals() const;
vector<nla::fixed_equality> const& fixed_equalities() const;
vector<nla::equality> const& equalities() const;
bool check_feasible() const { return m_core->check_feasible(); }
};
}