Package | Description |
---|---|
org.opensourcedea.dea | |
org.opensourcedea.linearSolver | |
org.opensourcedea.model |
Modifier and Type | Method and Description |
---|---|
void |
DEAProblem.solve()
Solves the specific DEA Problem.
|
void |
DEAProblem.solveOne(int dmuIndex)
Solves the DEA Problem for the given DMU Index.
|
void |
DEAProblem.solveOne(int dmuIndex,
double[][] negativeTransposedMatrix)
Solves the DEA Problem for the given DMU Index.
|
Modifier and Type | Method and Description |
---|---|
static SolverResults |
Lpsolve.solveLPProblem(java.util.ArrayList<double[]> Constraints,
double[] ObjF,
double[] RHS,
SolverObjDirection Dir,
int[] EqType)
The solveLPProblem method solve a Linear Problem.
|
Modifier and Type | Method and Description |
---|---|
void |
SBM_I.createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
java.util.ArrayList<double[]> constraints,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex) |
void |
SBM.createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex) |
void |
NC_ND.createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex) |
void |
Model.createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex)
this method is really just a signature mask for the createAndSolve methods.
|
void |
CCR.createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex)
This method creates and solves the CCR problems.
|
void |
BCC.createAndSolve(DEAProblem deaP,
int nbDMUs,
int nbVariables,
double[][] transposedMatrix,
DEAPSolution returnSol,
java.lang.Integer dmuIndex)
This method creates and solves BCC problems.
|
void |
SBM_O.solveAll(DEAProblem deaP)
The method solving the DEA Problem.
|
void |
SBM_I.solveAll(DEAProblem deaP)
The method solving the SBM_I DEA Problems.
|
void |
Model.solveAll(DEAProblem deaP)
This is the method that is called to solve a DEA Problem.
|
void |
SBM_O.solveOne(DEAProblem deaP,
double[][] negativeTransposedM,
int dmuIndex)
Solve SBM I problems for a given dmu index.
|
void |
SBM_I.solveOne(DEAProblem deaP,
double[][] negativeTransposedM,
int dmuIndex)
Solve SBM I problems for a given dmu index.
|
void |
Model.solveOne(DEAProblem deaP,
double[][] negativeTransposedM,
int dmuIndex)
This method solves a DEA Problem for a given DMU.
|