Click or drag to resize
DlxSolveT Method (T)
Find all possible solutions to an exact cover problem given a 2-dimensional array of T.

Namespace: DlxLib
Assembly: DlxLib (in DlxLib.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax
public IEnumerable<Solution> Solve<T>(
	T[,] matrix
)

Parameters

matrix
Type: T
A matrix of T values representing an exact cover problem.

Type Parameters

T
The type of elements in the matrix.

Return Value

Type: IEnumerableSolution
Yields Solution objects as they are found.
Remarks
This Solve method overload determines whether a matrix value is a logical 1 or a logical 0 using the following default predicate:
private static Func<T, bool> DefaultPredicate<T>()
{
    return t => !EqualityComparer<T>.Default.Equals(t, default(T));
}
Examples
var matrix = new[,]
    {
        {1, 0, 0},
        {0, 1, 0},
        {0, 0, 1}
    };
var dlx = new Dlx();
var solutions = dlx.Solve(matrix);
See Also