More cosmetics
This commit is contained in:
parent
572ff2018c
commit
15cd21b8f1
@ -13,7 +13,7 @@ import eva2.tools.math.Mathematics;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractLinearParamAdaption implements ParamAdaption, Serializable {
|
public abstract class AbstractLinearParamAdaption implements ParamAdaption, Serializable {
|
||||||
private double startV=0.2, endV=0.7;
|
private double startV=0.7, endV=0.2;
|
||||||
|
|
||||||
public AbstractLinearParamAdaption(AbstractLinearParamAdaption o) {
|
public AbstractLinearParamAdaption(AbstractLinearParamAdaption o) {
|
||||||
startV=o.startV;
|
startV=o.startV;
|
||||||
|
@ -15,7 +15,7 @@ implements InterfaceHasUpperDoubleBound, GenericParamAdaption, Serializable {
|
|||||||
String target = "undefinedParameter";
|
String target = "undefinedParameter";
|
||||||
|
|
||||||
public LinearParamAdaption() {
|
public LinearParamAdaption() {
|
||||||
super(0.2,0.7);
|
super(0.7,0.2);
|
||||||
target = "undefinedParameter";
|
target = "undefinedParameter";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -284,10 +284,10 @@ public abstract class AbstractStatistics implements InterfaceTextListener, Inter
|
|||||||
if (printRunIntroVerbosity()) printToTextListener("\n****** Multirun "+runNumber);
|
if (printRunIntroVerbosity()) printToTextListener("\n****** Multirun "+runNumber);
|
||||||
if (params != null) {
|
if (params != null) {
|
||||||
if (printRunIntroVerbosity()) printToTextListener("\nModule parameters: ");
|
if (printRunIntroVerbosity()) printToTextListener("\nModule parameters: ");
|
||||||
if (printRunIntroVerbosity()) printToTextListener(BeanInspector.toString(params));
|
if (printRunIntroVerbosity()) printToTextListener(BeanInspector.niceToString(params));
|
||||||
}
|
}
|
||||||
if (printRunIntroVerbosity()) printToTextListener("\nStatistics parameters: ");
|
if (printRunIntroVerbosity()) printToTextListener("\nStatistics parameters: ");
|
||||||
if (printRunIntroVerbosity()) printToTextListener(BeanInspector.toString(getStatisticsParameter()) + '\n');
|
if (printRunIntroVerbosity()) printToTextListener(BeanInspector.niceToString(getStatisticsParameter()) + '\n');
|
||||||
functionCalls = 0;
|
functionCalls = 0;
|
||||||
fireDataListenersStartStop(runNumber, true, true);
|
fireDataListenersStartStop(runNumber, true, true);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user