3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-05 23:05:46 +00:00

add_constraint API

This commit is contained in:
Matteo 2017-10-17 16:55:52 +02:00 committed by Arie Gurfinkel
parent 3c7165780c
commit 65885f7eba
9 changed files with 40 additions and 27 deletions

View file

@ -619,6 +619,10 @@ extern "C" {
Z3_CATCH;
}
void Z3_API Z3_fixedpoint_add_constraint (Z3_context c, Z3_fixedpoint d, Z3_ast e, unsigned lvl){
to_fixedpoint_ref(d)->ctx().add_constraint(to_expr(e), lvl);
}
#include "api_datalog_spacer.inc"
};