mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix assertions (#83)
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d913a55dfb
commit
2b18627fa1
2 changed files with 11 additions and 1 deletions
|
@ -60,6 +60,12 @@ struct ineq {
|
|||
typedef vector<ineq> lemma;
|
||||
|
||||
class int_solver {
|
||||
struct validate_model {
|
||||
int_solver& s;
|
||||
lia_move& r;
|
||||
validate_model(int_solver& s, lia_move& r): s(s), r(r) {}
|
||||
~validate_model();
|
||||
};
|
||||
public:
|
||||
// fields
|
||||
lar_solver *m_lar_solver;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue