More cosmetics

This commit is contained in:
Marcel Kronfeld 2011-05-03 13:46:22 +00:00
parent 572ff2018c
commit 15cd21b8f1
3 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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";
} }

View File

@ -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);
} }