3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-24 19:06:21 +00:00

Detect that adding side constraint caused a conflict

This commit is contained in:
CEisenhofer 2026-04-01 20:38:15 +02:00
parent 4524ebe614
commit 42f421ee09
2 changed files with 14 additions and 8 deletions

View file

@ -585,7 +585,7 @@ namespace seq {
void add_str_eq(str_eq const& eq) { m_str_eq.push_back(eq); }
void add_str_mem(str_mem const& mem) { m_str_mem.push_back(mem); }
void add_constraint(constraint const &ic);
bool add_constraint(constraint const &ic);
vector<constraint> const& constraints() const { return m_constraints; }
vector<constraint>& constraints() { return m_constraints; }