createAndSolve
public void createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex)
throws ProblemNotSolvedProperlyException,
DEASolverException,
MissingDataException
Description copied from class: Model
this method is really just a signature mask for the createAndSolve methods. It is
added here so that the solve method could call it. It should ALWAYS be overridden
in the sub-classes extending this class. The code in the sub-classes methods overriding
this createAndSolve method will solve a single DEA Problem for a specific DMUs.
- Overrides:
createAndSolve
in class Model
- Parameters:
deaP
- an instance of a DEAProblemnbDMUs
- the number of DMUs in deaPnbVariables
- the number of variables in deaPtransposedMatrix
- the transposed matrixreturnSol
- the returned solution. This is a DEAPSolution in which all the solution is stored.dmuIndex
- the index of the DMU under examination
- Throws:
ProblemNotSolvedProperlyException
DEASolverException
MissingDataException