Z3
Status.cs
Go to the documentation of this file.
1/*++
2Copyright (c) 2012 Microsoft Corporation
3
4Module Name:
5
6 Status.cs
7
8Abstract:
9
10 Z3 Managed API: Status
11
12Author:
13
14 Christoph Wintersteiger (cwinter) 2012-03-15
15
16Notes:
17
18--*/
19
20using System.Diagnostics;
21using System;
22
23namespace Microsoft.Z3
24{
28 public enum Status
29 {
33 UNSATISFIABLE = -1,
34
38 UNKNOWN = 0,
39
43 SATISFIABLE = 1
44 }
45
46}
Status
Status values.
Definition: Status.cs:29
@ UNKNOWN
Used to signify an unknown status.
@ UNSATISFIABLE
Used to signify an unsatisfiable status.
@ SATISFIABLE
Used to signify a satisfiable status.