Fix external runtime problem parameter count

Add getProblemDimension method to ExternalRuntimeProblem so that
problem dimension is not overridden from inherited method.
This commit is contained in:
Christian Ruppert 2016-09-20 20:53:56 -07:00 committed by Fabian Becker
parent 2d614d7f92
commit a166d122d0

View File

@ -363,6 +363,10 @@ public class ExternalRuntimeProblem extends AbstractOptimizationProblem
this.initializationRange.adaptRowCount(t);
}
public int getProblemDimension() {
return this.problemDimension;
}
/**
* Length of the x vector at is to be optimized
*