3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 05:43:39 +00:00

add tc and trc functionals for binary relations

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-04-09 22:47:01 +02:00
parent d3305aac16
commit ae982c5225
13 changed files with 361 additions and 77 deletions

View file

@ -301,6 +301,10 @@ namespace smt {
return m_expr2bool_var[n->get_id()];
}
bool_var get_bool_var(enode const * n) const {
return get_bool_var(n->get_owner());
}
bool_var get_bool_var_of_id(unsigned id) const {
return m_expr2bool_var[id];
}