All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.13.0.src.api.dotnet.Status.cs Maven / Gradle / Ivy

The newest version!
/*++
Copyright (c) 2012 Microsoft Corporation

Module Name:

    Status.cs

Abstract:

    Z3 Managed API: Status

Author:

    Christoph Wintersteiger (cwinter) 2012-03-15

Notes:
    
--*/

using System.Diagnostics;
using System;

namespace Microsoft.Z3
{
  /// 
  /// Status values.
  /// 
  public enum Status
  {    
    /// 
    /// Used to signify an unsatisfiable status.
    /// 
    UNSATISFIABLE = -1,

    /// 
    /// Used to signify an unknown status.
    /// 
    UNKNOWN = 0,

    /// 
    /// Used to signify a satisfiable status.
    /// 
    SATISFIABLE = 1
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy