Reduce the specified matrix and returns the reduced value.

Namespace: Tsp
Assembly: Tsp (in Tsp.exe) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static int Reduce(
	int[,] mat
)
Visual Basic
Public Shared Function Reduce ( _
	mat As Integer(,) _
) As Integer
Visual C++
public:
static int Reduce(
	array<int,2>^ mat
)

Parameters

mat
Type: array<System..::..Int32,2>[,](,)[,][,]
The matrix to be reduced.

Return Value

The reduced value.

See Also