Click or drag to resize
DlxSolveTData, TRow, TCol Method (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.

Namespace: DlxLib
Assembly: DlxLib (in DlxLib.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax
public IEnumerable<Solution> Solve<TData, TRow, TCol>(
	TData data,
	Func<TData, IEnumerable<TRow>> iterateRows,
	Func<TRow, IEnumerable<TCol>> iterateCols,
	Func<TCol, bool> predicate,
	int numPrimaryColumns
)

Parameters

data
Type: TData
The top-level data structure that represents the exact cover problem.
iterateRows
Type: SystemFuncTData, IEnumerableTRow
A System.Func delegate that will be invoked to iterate the rows in the matrix.
iterateCols
Type: SystemFuncTRow, IEnumerableTCol
A System.Func delegate that will be invoked to iterate the columns in a particular row in the matrix.
predicate
Type: SystemFuncTCol, 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

TData
The type of the data structure that represents the exact cover problem.
TRow
The type of the data structure that represents rows in the matrix.
TCol
The type of the data structure that represents columns 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 data = new List<Tuple<char[], string>>
    {
        Tuple.Create(new[] {'X', 'O', 'O', 'X', 'O'}, "Some data associated with row 0"),
        Tuple.Create(new[] {'O', 'X', 'O', 'O', 'O'}, "Some data associated with row 1"),
        Tuple.Create(new[] {'O', 'O', 'X', 'O', 'O'}, "Some data associated with row 2")
    };
var dlx = new Dlx();
const int numPrimaryColumns = 3;
var solutions = dlx.Solve(data, d => d, r => r.Item1, c => c == 'X', numPrimaryColumns);
See Also