mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
Beginnings of a Java API. This is under heavy construction.
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
e37a347b33
commit
985145d810
36 changed files with 11224 additions and 11 deletions
26
src/api/java/com/Microsoft/Z3/Status.java
Normal file
26
src/api/java/com/Microsoft/Z3/Status.java
Normal file
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* This file was automatically generated from Status.cs
|
||||
**/
|
||||
|
||||
package com.Microsoft.Z3;
|
||||
|
||||
/* using System; */
|
||||
|
||||
/**
|
||||
* Status values.
|
||||
**/
|
||||
/**
|
||||
* Used to signify an unsatisfiable status.
|
||||
**/
|
||||
UNSATISFIABLE = -1,
|
||||
|
||||
/**
|
||||
* Used to signify an unknown status.
|
||||
**/
|
||||
UNKNOWN = 0,
|
||||
|
||||
/**
|
||||
* Used to signify a satisfiable status.
|
||||
**/
|
||||
SATISFIABLE = 1
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue