mirror of
https://github.com/Z3Prover/z3
synced 2025-08-05 10:50:24 +00:00
fix sign for binary propagation hints
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bffa7ff2f6
commit
cb279fba2b
3 changed files with 8 additions and 4 deletions
|
@ -946,6 +946,11 @@ namespace sat {
|
|||
s += 6;
|
||||
return true;
|
||||
}
|
||||
if (0 == strncmp(s, "cut", 3)) {
|
||||
h.m_ty = hint_type::cut_h;
|
||||
s += 3;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
|
@ -999,7 +1004,6 @@ namespace sat {
|
|||
return;
|
||||
ws();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue