3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 17:54:43 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-05-20 14:28:41 -07:00
parent f2d3160181
commit 1729232254
3 changed files with 9 additions and 7 deletions

View file

@ -70,12 +70,12 @@ namespace smt {
var_value_hash m_var_value_hash;
var_value_eq m_var_value_eq;
var_value_table m_var_value_table;
std::function<void(literal, literal, literal)> m_add_axiom;
context& ctx() const { return th.get_context(); }
void propagate(edge_id edge);
std::function<void(literal, literal, literal)> m_add_axiom;
void add_axiom(literal a, literal b = null_literal, literal c = null_literal) {
m_add_axiom(a, b, c);
}