|
|
<< CentreReduce | index | CorrelationMatrix >> DECIDE referenceDECIDE__Condorcetshort DECIDE_Condorcet( * double * ResultsArray,
* const long * ResultsArraySize,
* const double * DecisionMatrix,
* const short * RowsCount,
* const short * ColumnsCount)
Compute the "Condorcet totals" for a DecisionMatrix. return value : * 0 : completed successfully
* 1 : null pointer in first parameter
* 2 : null pointer in second parameter
* 3 : null pointer in third parameter
* 4 : null pointer in fourth parameter
* 5 : null pointer in fifth parameter
* 101 : *RowsCount < 1
* 102 : *ColumnsCount < 1
* 103 : *OutputMatrixSize < (*RowsCount) * sizeof(double))
* 900 : malloc() failed
* 901 : internal call to DECIDE__DecisionMatrixFlows failed
<< CentreReduce | index | CorrelationMatrix >>
|