Click or drag to resize
AssignmentProblem Constructor
Determines an optimal solution to the assignment problem.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public AssignmentProblem(
	double[,] weight
)

Parameters

weight
Type: SystemDouble
the N-by-N matrix of weights
Exceptions
ExceptionCondition
ArgumentExceptionunless all weights are nonnegative
NullReferenceExceptionif weight is null
See Also