3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00

Add some fi info

This commit is contained in:
Jakob Rath 2022-04-13 09:34:59 +02:00
parent d59c32261f
commit be488f75ab
5 changed files with 25 additions and 14 deletions

View file

@ -171,9 +171,9 @@ namespace polysat {
std::ostream& display(std::ostream& out, pvar v) const;
struct var_pp {
viable& v;
viable const& v;
pvar var;
var_pp(viable& v, pvar var) : v(v), var(var) {}
var_pp(viable const& v, pvar var) : v(v), var(var) {}
};
};