mirror of
https://github.com/Z3Prover/z3
synced 2025-04-26 10:35:33 +00:00
Merge branch 'unstable' of https://git01.codeplex.com/z3 into fpa-api
Resolved a bunch of Java documentation conflicts Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com> Conflicts: src/api/java/AST.java src/api/java/ASTMap.java src/api/java/ASTVector.java src/api/java/AlgebraicNum.java src/api/java/BoolExpr.java src/api/java/Context.java src/api/java/Expr.java src/api/java/Fixedpoint.java src/api/java/Global.java src/api/java/InterpolationContext.java src/api/java/Model.java src/api/java/Solver.java
This commit is contained in:
commit
766d585922
38 changed files with 1326 additions and 2066 deletions
|
@ -24,6 +24,7 @@ public class EnumSort extends Sort
|
|||
{
|
||||
/**
|
||||
* The function declarations of the constants in the enumeration.
|
||||
* @throws Z3Exception on error
|
||||
**/
|
||||
public FuncDecl[] getConstDecls() throws Z3Exception
|
||||
{
|
||||
|
@ -36,6 +37,8 @@ public class EnumSort extends Sort
|
|||
|
||||
/**
|
||||
* The constants in the enumeration.
|
||||
* @throws Z3Exception on error
|
||||
* @return an Expr
|
||||
**/
|
||||
public Expr[] getConsts() throws Z3Exception
|
||||
{
|
||||
|
@ -48,6 +51,7 @@ public class EnumSort extends Sort
|
|||
|
||||
/**
|
||||
* The test predicates for the constants in the enumeration.
|
||||
* @throws Z3Exception on error
|
||||
**/
|
||||
public FuncDecl[] getTesterDecls() throws Z3Exception
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue