Interface ResettableExperiment
-
- All Known Implementing Classes:
AbstractExperiment
,CrossValidationExperiment
,TrainTestSplitExperiment
public interface ResettableExperiment
Interface for experiments that can clear any prior results.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getResetResults()
Returns whether to clear the results before starting the experiment.void
setResetResults(boolean value)
Sets whether to clear the results before starting the experiment.
-
-
-
Method Detail
-
setResetResults
void setResetResults(boolean value)
Sets whether to clear the results before starting the experiment.- Parameters:
value
- true if to clear results
-
getResetResults
boolean getResetResults()
Returns whether to clear the results before starting the experiment.- Returns:
- true if to clear results
-
-