Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16367 for branches


Ignore:
Timestamp:
12/12/18 10:10:04 (5 years ago)
Author:
chaider
Message:

#2966 Added EvaluatedSolutions Parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2966_interval_calculation/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/IntervalInterpreter.cs

    r16364 r16367  
    3030using HeuristicLab.Problems.DataAnalysis;
    3131using HeuristicLab.Problems.DataAnalysis.Symbolic;
     32using HeuristicLab.Parameters;
    3233
    3334namespace HeuristicLab.Algorithms.DataAnalysis.Symbolic {
     
    4849    }
    4950
     51    [StorableConstructor]
    5052    private IntervalInterpreter(bool deserializing) : base(deserializing) { }
    5153    private IntervalInterpreter(IntervalInterpreter original, Cloner cloner)
     
    5355
    5456    public IntervalInterpreter()
    55         : base("IntervalInterpreter", "Intperter for calculation of intervals of symbolic models.") { }
     57        : base("IntervalInterpreter", "Intperter for calculation of intervals of symbolic models.") {
     58      Parameters.Add(new FixedValueParameter<IntValue>(EvaluatedSolutionsParameterName, "A counter for the total number of solutions the interpreter has evaluated", new IntValue(0)));
     59    }
    5660
    5761    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.