| Dlx Class |
Namespace: DlxLib
The Dlx type exposes the following members.
| Name | Description | |
|---|---|---|
| Dlx |
Callers should use this constructor when they do not need to be able to request cancellation.
| |
| Dlx(CancellationToken) |
Callers should use this constructor when they need to be able to request cancellation.
|
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| SolveT(T) |
Find all possible solutions to an exact cover problem given a 2-dimensional array of T.
| |
| SolveT(T, FuncT, Boolean) |
Find all possible solutions to an exact cover problem given a 2-dimensional array of T
and a predicate.
| |
| SolveT(T, Int32) |
Find all possible solutions to an exact cover problem given a 2-dimensional array of T
containing primary and secondary columns.
| |
| SolveT(T, FuncT, Boolean, Int32) |
Find all possible solutions to an exact cover problem given a 2-dimensional array of T
containing primary and secondary columns and a predicate.
| |
| SolveTData, TRow, TCol(TData, FuncTData, IEnumerableTRow, FuncTRow, IEnumerableTCol) |
Find all possible solutions to an exact cover problem given an arbitrary data structure representing
a matrix.
| |
| SolveTData, TRow, TCol(TData, FuncTData, IEnumerableTRow, FuncTRow, IEnumerableTCol, FuncTCol, Boolean) |
Find all possible solutions to an exact cover problem given an arbitrary data structure representing
a matrix and a predicate.
| |
| SolveTData, TRow, TCol(TData, FuncTData, IEnumerableTRow, FuncTRow, IEnumerableTCol, Int32) |
Find all possible solutions to an exact cover problem given an arbitrary data structure representing
a matrix containing primary and secondary columns.
| |
| SolveTData, TRow, TCol(TData, FuncTData, IEnumerableTRow, FuncTRow, IEnumerableTCol, FuncTCol, Boolean, Int32) |
Find all possible solutions to an exact cover problem given an arbitrary data structure representing
a matrix containing primary and secondary columns and a predicate.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
| Cancelled |
Occurs when the caller requests cancellation via the CancellationToken passed to Dlx(CancellationToken).
| |
| Finished |
Occurs once when the internal search algorithm finishes.
| |
| SearchStep |
Occurs for each set of rows considered by the internal search algorithm.
| |
| SolutionFound |
Occurs for each solution found to the exact cover problem.
| |
| Started |
Occurs once when the internal search algorithm starts.
|