Home
last modified time | relevance | path

Searched refs:getNumObjectiveFunctions (Results 1 – 6 of 6) sorted by relevance

/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/optim/linear/
H A DSimplexTableau.java160 if (getNumObjectiveFunctions() == 2) { in initializeColumnLabels()
189 int height = constraints.size() + getNumObjectiveFunctions(); in createTableau()
193 if (getNumObjectiveFunctions() == 2) { in createTableau()
197 int zIndex = (getNumObjectiveFunctions() == 1) ? 0 : 1; in createTableau()
213 int row = getNumObjectiveFunctions() + i; in createTableau()
278 protected final int getNumObjectiveFunctions() { in getNumObjectiveFunctions() method in SimplexTableau
371 if (getNumObjectiveFunctions() == 1) { in dropPhase1Objective()
413 initializeBasicVariables(getNumObjectiveFunctions()); in dropPhase1Objective()
421 System.arraycopy(src, 0, dest, getNumObjectiveFunctions(), src.length); in copyArray()
431 for (int i = getNumObjectiveFunctions(); i < end; i++) { in isOptimal()
[all …]
H A DSimplexSolver.java198 for (int i = tableau.getNumObjectiveFunctions(); i < tableau.getWidth() - 1; i++) { in getPivotColumn()
228 for (int i = tableau.getNumObjectiveFunctions(); i < tableau.getHeight(); i++) { in isValidPivotColumn()
250 for (int i = tableau.getNumObjectiveFunctions(); i < tableau.getHeight(); i++) { in getPivotRow()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/optimization/linear/
H A DSimplexTableau.java158 if (getNumObjectiveFunctions() == 2) { in initializeColumnLabels()
186 numArtificialVariables + getNumObjectiveFunctions() + 1; // + 1 is for RHS in createTableau()
187 int height = constraints.size() + getNumObjectiveFunctions(); in createTableau()
191 if (getNumObjectiveFunctions() == 2) { in createTableau()
194 int zIndex = (getNumObjectiveFunctions() == 1) ? 0 : 1; in createTableau()
212 int row = getNumObjectiveFunctions() + i; in createTableau()
277 protected final int getNumObjectiveFunctions() { in getNumObjectiveFunctions() method in SimplexTableau
332 if (getNumObjectiveFunctions() == 1) { in dropPhase1Objective()
380 System.arraycopy(src, 0, dest, getNumObjectiveFunctions(), src.length); in copyArray()
388 for (int i = getNumObjectiveFunctions(); i < getWidth() - 1; i++) { in isOptimal()
[all …]
H A DSimplexSolver.java74 for (int i = tableau.getNumObjectiveFunctions(); i < tableau.getWidth() - 1; i++) { in getPivotColumn()
96 for (int i = tableau.getNumObjectiveFunctions(); i < tableau.getHeight(); i++) { in getPivotRow()
145 final int varStart = tableau.getNumObjectiveFunctions(); in getPivotRow()
/dports/misc/dartsim/dart-6.11.1/dart/optimizer/
H A DGenericMultiObjectiveProblem.hpp69 std::size_t getNumObjectiveFunctions() const;
H A DGenericMultiObjectiveProblem.cpp75 std::size_t GenericMultiObjectiveProblem::getNumObjectiveFunctions() const in getNumObjectiveFunctions() function in dart::optimizer::GenericMultiObjectiveProblem