TipText for parallel threading.

This commit is contained in:
Marcel Kronfeld 2009-07-23 14:58:13 +00:00
parent a9faa4388e
commit 4e9f7dc241

View File

@ -69,13 +69,17 @@ public abstract class AbstractOptimizationProblem implements InterfaceOptimizati
*/
public abstract Object clone();
public int getParallelthreads() {
public int getParallelThreads() {
return parallelthreads;
}
public void setParallelthreads(int parallelthreads) {
public void setParallelThreads(int 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
*/