Typo fixes
This commit is contained in:
parent
317a79073e
commit
0fe0a5f26c
@ -261,9 +261,9 @@ public class Processor extends Thread implements InterfaceProcessor, InterfacePo
|
|||||||
|
|
||||||
runCounter++;
|
runCounter++;
|
||||||
maybeFinishParamCtrl(optimizationParameters);
|
maybeFinishParamCtrl(optimizationParameters);
|
||||||
userAborted = !isOptimizationRunning(); // stop is "normal" if opt wasnt set false by the user (and thus still true)
|
userAborted = !isOptimizationRunning(); // stop is "normal" if opt wasn't set false by the user (and thus still true)
|
||||||
//////////////// Default stats
|
//////////////// Default stats
|
||||||
statistics.stopOptimizationPerformed(!userAborted, terminator.lastTerminationMessage()); // stop is "normal" if opt wasnt set false by the user (and thus still true)
|
statistics.stopOptimizationPerformed(!userAborted, terminator.lastTerminationMessage()); // stop is "normal" if opt wasn't set false by the user (and thus still true)
|
||||||
|
|
||||||
//////////////// PP or set results without further PP
|
//////////////// PP or set results without further PP
|
||||||
if (!userAborted) {
|
if (!userAborted) {
|
||||||
|
@ -218,7 +218,7 @@ public class FLensProblem extends AbstractOptimizationProblem
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method inits a problem view frame
|
* This method initializes a problem view frame
|
||||||
*/
|
*/
|
||||||
public void initProblemFrame() {
|
public void initProblemFrame() {
|
||||||
if (this.problemFrame == null) {
|
if (this.problemFrame == null) {
|
||||||
@ -256,7 +256,7 @@ public class FLensProblem extends AbstractOptimizationProblem
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method inits the Problem to log multiruns
|
* This method initializes the Problem to log multiruns
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void initializeProblem() {
|
public void initializeProblem() {
|
||||||
@ -269,7 +269,7 @@ public class FLensProblem extends AbstractOptimizationProblem
|
|||||||
/**
|
/**
|
||||||
* This method inits a given population
|
* This method inits a given population
|
||||||
*
|
*
|
||||||
* @param population The populations that is to be inited
|
* @param population The populations that is to be initialized
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void initializePopulation(Population population) {
|
public void initializePopulation(Population population) {
|
||||||
@ -299,7 +299,7 @@ public class FLensProblem extends AbstractOptimizationProblem
|
|||||||
/**
|
/**
|
||||||
* This method evaluate a single individual and sets the fitness values
|
* This method evaluate a single individual and sets the fitness values
|
||||||
*
|
*
|
||||||
* @param individual The individual that is to be evalutated
|
* @param individual The individual that is to be evaluated
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void evaluate(AbstractEAIndividual individual) {
|
public void evaluate(AbstractEAIndividual individual) {
|
||||||
@ -376,7 +376,7 @@ public class FLensProblem extends AbstractOptimizationProblem
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This method allows you to output a string that describes a found solution
|
* This method allows you to output a string that describes a found solution
|
||||||
* in a way that is most suiteable for a given problem.
|
* in a way that is most suitable for a given problem.
|
||||||
*
|
*
|
||||||
* @param individual The individual that is to be shown.
|
* @param individual The individual that is to be shown.
|
||||||
* @return The description.
|
* @return The description.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user