3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00

add decide callbacks to propagator API

this is an intermediary state. The decide_eh is only partially implemented.
This commit is contained in:
Nikolaj Bjorner 2022-07-25 11:00:58 +02:00
parent 3e8daa5965
commit cd7ef11593
2 changed files with 29 additions and 1 deletions

View file

@ -1854,6 +1854,7 @@ _lib.Z3_solver_propagate_final.restype = None
_lib.Z3_solver_propagate_fixed.restype = None
_lib.Z3_solver_propagate_eq.restype = None
_lib.Z3_solver_propagate_diseq.restype = None
_lib.Z3_solver_propagate_decide.restype = None
on_model_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p)
_lib.Z3_optimize_register_model_eh.restype = None