Click or drag to resize
DlxSolveT Method (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.

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

Parameters

matrix
Type: T
A matrix of T values representing an exact cover problem.
predicate
Type: SystemFuncT, Boolean
A predicate which is invoked for each value in the matrix to determine whether the value represents a logical 1 or a logical 0 indicated by returning true or false respectively.
numPrimaryColumns
Type: SystemInt32
The number of primary columns. Columns at indices higher than this value are assumed to be secondary columns.

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 also handles secondary columns. The difference between primary and secondary columns is that a solution covers every primary column exactly once but covers every secondary column at most once.
Examples
var matrix = new[,]
    {
        {'X', 'O', 'O', 'X', 'O'},
        {'O', 'X', 'O', 'O', 'O'},
        {'O', 'O', 'X', 'O', 'O'}
    };
var dlx = new Dlx();
const int numPrimaryColumns = 3;
var solutions = dlx.Solve(matrix, c => c == 'X', numPrimaryColumns);
See Also