A static symbol for the solution data column.

This commit is contained in:
Marcel Kronfeld 2010-09-14 15:56:56 +00:00
parent dcdf96c111
commit 07451b5e61

View File

@ -73,6 +73,8 @@ implements InterfaceOptimizationProblem /*, InterfaceParamControllable*/, Serial
} }
public static final String STAT_SOLUTION_HEADER = "solution";
int parallelthreads = 1; int parallelthreads = 1;
protected AbstractEAIndividual m_Template; protected AbstractEAIndividual m_Template;
@ -242,8 +244,8 @@ implements InterfaceOptimizationProblem /*, InterfaceParamControllable*/, Serial
* @return String * @return String
*/ */
public String[] getAdditionalFileStringHeader() { public String[] getAdditionalFileStringHeader() {
if (this instanceof InterfaceInterestingHistogram) return new String[]{"solution","histogram","score"}; if (this instanceof InterfaceInterestingHistogram) return new String[]{STAT_SOLUTION_HEADER,"histogram","score"};
else return new String[]{"solution"}; else return new String[]{STAT_SOLUTION_HEADER};
} }
/** This method returns the header for the additional data that is to be written into a file /** This method returns the header for the additional data that is to be written into a file