Changeset 15281 for branches/Async/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs
- Timestamp:
- 07/23/17 11:17:18 (8 years ago)
- Location:
- branches/Async
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async
- Property svn:ignore
-
old new 24 24 protoc.exe 25 25 obj 26 .vs
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/Async/HeuristicLab.Problems.TestFunctions
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs
r12504 r15281 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 261 261 Operators.Add(new SingleObjectiveTestFunctionPathRelinker()); 262 262 Operators.Add(new SingleObjectiveTestFunctionSimilarityCalculator()); 263 Operators.Add(new HammingSimilarityCalculator()); 264 Operators.Add(new EuclideanSimilarityCalculator()); 263 265 Operators.Add(new QualitySimilarityCalculator()); 264 Operators.Add(new NoSimilarityCalculator());265 266 266 267 Operators.Add(new BestSingleObjectiveTestFunctionSolutionAnalyzer()); … … 358 359 op.BoundsParameter.ActualName = BoundsParameter.Name; 359 360 op.BoundsParameter.Hidden = true; 360 op.ProblemSizeParameter.ActualName = ProblemSizeParameter.Name;361 op.ProblemSizeParameter.Hidden = true;362 361 } 363 362 foreach (var op in Operators.OfType<IRealVectorParticleUpdater>()) {
Note: See TracChangeset
for help on using the changeset viewer.