TipText for parallel threading.
This commit is contained in:
parent
a9faa4388e
commit
4e9f7dc241
@ -69,14 +69,18 @@ public abstract class AbstractOptimizationProblem implements InterfaceOptimizati
|
|||||||
*/
|
*/
|
||||||
public abstract Object clone();
|
public abstract Object clone();
|
||||||
|
|
||||||
public int getParallelthreads() {
|
public int getParallelThreads() {
|
||||||
return parallelthreads;
|
return parallelthreads;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParallelthreads(int parallelthreads) {
|
public void setParallelThreads(int parallelthreads) {
|
||||||
this.parallelthreads = parallelthreads;
|
this.parallelthreads = parallelthreads;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String parallelThreadsTipText() {
|
||||||
|
return "Set the number of threaded parallel function evaluations - interesting for slow functions and generational optimizers.";
|
||||||
|
}
|
||||||
|
|
||||||
/** This method inits the Problem to log multiruns
|
/** This method inits the Problem to log multiruns
|
||||||
*/
|
*/
|
||||||
public abstract void initProblem();
|
public abstract void initProblem();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user