OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAXIMIZE
(Results
1 - 4
of
4
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
GoalType.java
30
MAXIMIZE
,
MultiStartUnivariateRealOptimizer.java
278
if ((goalType == GoalType.
MAXIMIZE
) ^ (currY < prevY)) {
283
while ((i >= 0) && ((goalType == GoalType.
MAXIMIZE
) ^ (currY < mIY))) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java
102
* @param goalType type of optimization goal: either {@link GoalType#
MAXIMIZE
}
121
this.tableau = createTableau(goalType == GoalType.
MAXIMIZE
);
150
* @param
maximize
if true, goal is to
maximize
the objective function
153
protected RealMatrix createTableau(final boolean
maximize
) {
166
matrix.setEntry(zIndex, zIndex,
maximize
? 1 : -1);
168
maximize
? f.getCoefficients().mapMultiply(-1) : f.getCoefficients();
171
maximize
? f.getConstantTerm() : -1 * f.getConstantTerm());
/external/curl/tests/libtest/
lib557.c
[
all
...]
Completed in 346 milliseconds