3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-16 04:20:25 +00:00

Rename to get_assignment to prevent clash with class name

This commit is contained in:
Jakob Rath 2023-01-09 17:15:40 +01:00
parent 3f5e6a4bfa
commit c55d316c6a
6 changed files with 10 additions and 12 deletions

View file

@ -25,7 +25,7 @@ Author:
namespace polysat {
lbool constraint::eval(solver const& s) const {
return eval(s.assignment());
return eval(s.get_assignment());
}
bool signed_constraint::is_eq() const {