mirror of
https://github.com/Z3Prover/z3
synced 2025-05-03 22:05:45 +00:00
add facility to solve for a linear term over API
This commit is contained in:
parent
d2411567b5
commit
05e053247d
14 changed files with 109 additions and 6 deletions
|
@ -7077,6 +7077,14 @@ extern "C" {
|
|||
Z3_ast Z3_API Z3_solver_congruence_next(Z3_context c, Z3_solver s, Z3_ast a);
|
||||
|
||||
|
||||
/**
|
||||
\brief retrieve a 'solution' for \c t as defined by equalities in maintained by solvers.
|
||||
At this point, only linear solution are supported.
|
||||
|
||||
def_API('Z3_solver_solve_for', AST, (_in(CONTEXT), _in(SOLVER), _in(AST)))
|
||||
*/
|
||||
Z3_ast Z3_API Z3_solver_solve_for(Z3_context c, Z3_solver s, Z3_ast t);
|
||||
|
||||
/**
|
||||
\brief register a callback to that retrieves assumed, inferred and deleted clauses during search.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue