createAndSolve
public void createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex)
throws ProblemNotSolvedProperlyException,
DEASolverException,
MissingDataException
This method creates and solves BCC problems.
- Overrides:
createAndSolve
in class Model
- Parameters:
deaP
- The DEAProblem to solve.nbDMUs
- The number of DMUs of the DEAProblem.
This information is already in the DEAProblem but it is more efficient to use call the method
with the number of DMUs rather than determining the number of DMUs from the DEAProblem.nbVariables
- The number of Variables of the DEA Problem.transposedMatrix
- The transposed of the DEAProblem matrix (model in the envelopment form)returnSol
- The Solution Object in which the solution will be stored.dmuIndex
- The index of the DMU under examination.
- Throws:
MissingDataException
ProblemNotSolvedProperlyException
DEASolverException