3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 18:00:23 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-18 07:19:07 -07:00
parent 152c95f72a
commit 578ddf3e9d
2 changed files with 3 additions and 2 deletions

View file

@ -27,6 +27,7 @@ user_propagator::user_propagator(context& ctx):
{}
unsigned user_propagator::add_expr(expr* e) {
// TODO: check type of 'e', either Bool or Bit-vector.
return mk_var(ensure_enode(e));
}