3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-01-27 19:35:26 -08:00
parent c8aab1972a
commit 579caab025
5 changed files with 77 additions and 8 deletions

View file

@ -45,7 +45,7 @@ namespace q {
expr_ref lhs;
expr_ref rhs;
bool sign;
lit(expr_ref& lhs, expr_ref& rhs, bool sign):
lit(expr_ref const& lhs, expr_ref const& rhs, bool sign):
lhs(lhs), rhs(rhs), sign(sign) {}
};