mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
26 lines
398 B
Java
26 lines
398 B
Java
/**
|
|
* 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
|
|
|