Changeset 16367
- Timestamp:
- 12/12/18 10:10:04 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2966_interval_calculation/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/IntervalInterpreter.cs
r16364 r16367 30 30 using HeuristicLab.Problems.DataAnalysis; 31 31 using HeuristicLab.Problems.DataAnalysis.Symbolic; 32 using HeuristicLab.Parameters; 32 33 33 34 namespace HeuristicLab.Algorithms.DataAnalysis.Symbolic { … … 48 49 } 49 50 51 [StorableConstructor] 50 52 private IntervalInterpreter(bool deserializing) : base(deserializing) { } 51 53 private IntervalInterpreter(IntervalInterpreter original, Cloner cloner) … … 53 55 54 56 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 } 56 60 57 61 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.