mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
Implement RCF external C API
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
f1d47f35b2
commit
9fbbdb56e4
6 changed files with 155 additions and 31 deletions
|
@ -181,11 +181,21 @@ namespace realclosure {
|
|||
\brief a <- -a
|
||||
*/
|
||||
void neg(numeral & a);
|
||||
|
||||
/**
|
||||
\brief b <- -a
|
||||
*/
|
||||
void neg(numeral const & a, numeral & b);
|
||||
|
||||
/**
|
||||
\brief a <- 1/a if a != 0
|
||||
*/
|
||||
void inv(numeral & a);
|
||||
|
||||
/**
|
||||
\brief b <- 1/a if a != 0
|
||||
*/
|
||||
void inv(numeral const & a, numeral & b);
|
||||
|
||||
/**
|
||||
\brief c <- a/b if b != 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue