Changeset 13437 for branches/ProblemRefactoring/HeuristicLab.Optimization
- Timestamp:
- 12/06/15 15:33:25 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/SingleObjectiveProblem.cs ΒΆ
r13404 r13437 51 51 } 52 52 set { 53 if (double.IsNaN(value)) { 54 BestKnownQualityParameter.Value = null; 55 return; 56 } 53 57 if (BestKnownQualityParameter.Value == null) BestKnownQualityParameter.Value = new DoubleValue(value); 54 58 else BestKnownQualityParameter.Value.Value = value;
Note: See TracChangeset
for help on using the changeset viewer.