Show / Hide Table of Contents

Class SolveResult

Captures the result of a solve call.

Inheritance
System.Object
SolveResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ClingoSharp
Assembly: ClingoSharp.dll
Syntax
public sealed class SolveResult

Properties

| Improve this Doc View Source

IsExhausted

true if the search space was exhausted.

Declaration
public bool IsExhausted { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsInterrupted

true if the search was interrupted.

Declaration
public bool IsInterrupted { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsSatisfiable

true if the problem is satisfiable, false if the problem is unsatisfiable, or null if the satisfiablity is not known.

Declaration
public bool? IsSatisfiable { get; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

IsUnknown

true if the satisfiablity is not known.

Declaration
public bool IsUnknown { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsUnSatisfiable

true if the problem is unsatisfiable, false if the problem is satisfiable, or null if the satisfiablity is not known.

Declaration
public bool? IsUnSatisfiable { get; }
Property Value
Type Description
System.Nullable<System.Boolean>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX