mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 17:54:43 +00:00
fix regressions in nl/smt
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5632900f35
commit
e8811748d3
7 changed files with 49 additions and 35 deletions
|
@ -214,10 +214,13 @@ namespace smt {
|
|||
|
||||
template<typename Ext>
|
||||
bool theory_arith<Ext>::valid_assignment() const {
|
||||
return
|
||||
valid_row_assignment() &&
|
||||
if (valid_row_assignment() &&
|
||||
satisfy_bounds() &&
|
||||
satisfy_integrality();
|
||||
satisfy_integrality()) {
|
||||
return true;
|
||||
}
|
||||
TRACE("arith", display(tout););
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue