Class Model<T>
A satisfying assignment for a SatProblem<T>. Variables that were never constrained may be missing.
public sealed class Model<T> where T : IEquatable<T>
Type Parameters
T
- Inheritance
-
objectModel<T>
Constructors
Model(IReadOnlyDictionary<T, bool>)
A satisfying assignment for a SatProblem<T>. Variables that were never constrained may be missing.
public Model(IReadOnlyDictionary<T, bool> assignment)
Parameters
assignmentIReadOnlyDictionary<T, bool>
Properties
this[T]
The truth value assigned to value, or null if no assignment exists.
public bool? this[T value] { get; }
Parameters
valueT
Property Value
- bool?