- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 16 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.Problems.TestFunctions
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/trunk/sources/HeuristicLab.Problems.TestFunctions merged eligible /branches/Algorithms.GradientDescent/HeuristicLab.Problems.TestFunctions 5516-5520 /branches/Benchmarking/sources/HeuristicLab.Problems.TestFunctions 6917-7005 /branches/CMAES/HeuristicLab.Problems.TestFunctions 9121-9257 /branches/CloningRefactoring/HeuristicLab.Problems.TestFunctions 4656-4721 /branches/DataAnalysis Refactoring/HeuristicLab.Problems.TestFunctions 5471-5808 /branches/DataAnalysis SolutionEnsembles/HeuristicLab.Problems.TestFunctions 5815-6180 /branches/DataAnalysis/HeuristicLab.Problems.TestFunctions 4458-4459,4462,4464 /branches/GP.Grammar.Editor/HeuristicLab.Problems.TestFunctions 6284-6795 /branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.TestFunctions 5060 /branches/NET40/sources/HeuristicLab.Problems.TestFunctions 5138-5162 /branches/ParallelEngine/HeuristicLab.Problems.TestFunctions 5175-5192 /branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.TestFunctions 7568-7810 /branches/QAPAlgorithms/HeuristicLab.Problems.TestFunctions 6350-6627 /branches/Restructure trunk solution/HeuristicLab.Problems.TestFunctions 6828 /branches/RuntimeOptimizer/HeuristicLab.Problems.TestFunctions 8943-9078 /branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TestFunctions 7787-8333 /branches/SlaveShutdown/HeuristicLab.Problems.TestFunctions 8944-8956 /branches/SuccessProgressAnalysis/HeuristicLab.Problems.TestFunctions 5370-5682 /branches/Trunk/HeuristicLab.Problems.TestFunctions 6829-6865 /branches/UnloadJobs/HeuristicLab.Problems.TestFunctions 9168-9215 /branches/VNS/HeuristicLab.Problems.TestFunctions 5594-5752 /branches/histogram/HeuristicLab.Problems.TestFunctions 5959-6341
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/AckleyEvaluator.cs
r7259 r9363 109 109 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 110 110 /// <returns>The result value of the Ackley function at the given point.</returns> 111 p rotectedoverride double EvaluateFunction(RealVector point) {111 public override double EvaluateFunction(RealVector point) { 112 112 return Apply(point); 113 113 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/BealeEvaluator.cs
r7259 r9363 98 98 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 99 99 /// <returns>The result value of the Beale function at the given point.</returns> 100 p rotectedoverride double EvaluateFunction(RealVector point) {100 public override double EvaluateFunction(RealVector point) { 101 101 return Apply(point); 102 102 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/BoothEvaluator.cs
r7259 r9363 94 94 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 95 95 /// <returns>The result value of the Booth function at the given point.</returns> 96 p rotectedoverride double EvaluateFunction(RealVector point) {96 public override double EvaluateFunction(RealVector point) { 97 97 return Apply(point); 98 98 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/GriewankEvaluator.cs
r7259 r9363 133 133 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 134 134 /// <returns>The result value of the Griewank function at the given point.</returns> 135 p rotectedoverride double EvaluateFunction(RealVector point) {135 public override double EvaluateFunction(RealVector point) { 136 136 if (point.Length > 100) 137 137 return Apply(point); -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/LevyEvaluator.cs
r7259 r9363 111 111 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 112 112 /// <returns>The result value of the Levy function at the given point.</returns> 113 p rotectedoverride double EvaluateFunction(RealVector point) {113 public override double EvaluateFunction(RealVector point) { 114 114 return Apply(point); 115 115 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/MatyasEvaluator.cs
r7259 r9363 93 93 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 94 94 /// <returns>The result value of the Matyas function at the given point.</returns> 95 p rotectedoverride double EvaluateFunction(RealVector point) {95 public override double EvaluateFunction(RealVector point) { 96 96 return Apply(point); 97 97 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/MultinormalEvaluator.cs
r7259 r9363 44 44 set { Parameters["s^2s"].ActualValue = value; } 45 45 } 46 private static Random Random = newRandom();46 private static System.Random Random = new System.Random(); 47 47 48 48 private Dictionary<int, List<RealVector>> stdCenters; … … 161 161 } 162 162 163 public double Evaluate(RealVector point) { 164 return EvaluateFunction(point); 165 } 166 167 protected override double EvaluateFunction(RealVector point) { 163 public override double EvaluateFunction(RealVector point) { 168 164 double value = 0; 169 165 if (centers.Count == 0) { -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/RastriginEvaluator.cs
r7259 r9363 119 119 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 120 120 /// <returns>The result value of the Rastrigin function at the given point.</returns> 121 p rotectedoverride double EvaluateFunction(RealVector point) {121 public override double EvaluateFunction(RealVector point) { 122 122 return Apply(point, A.Value); 123 123 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/RosenbrockEvaluator.cs
r7259 r9363 105 105 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 106 106 /// <returns>The result value of the Rosenbrock function at the given point.</returns> 107 p rotectedoverride double EvaluateFunction(RealVector point) {107 public override double EvaluateFunction(RealVector point) { 108 108 return Apply(point); 109 109 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/SchwefelEvaluator.cs
r7259 r9363 96 96 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 97 97 /// <returns>The result value of the Schwefel function at the given point.</returns> 98 p rotectedoverride double EvaluateFunction(RealVector point) {98 public override double EvaluateFunction(RealVector point) { 99 99 return Apply(point); 100 100 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/SingleObjectiveTestFunctionProblemEvaluator.cs
r7259 r9363 92 92 return EvaluateFunction(new RealVector(new double[] { x, y })); 93 93 } 94 /// <summary>95 /// Gets the best known solution for this function.96 /// </summary>97 public abstract RealVector GetBestKnownSolution(int dimension);98 94 99 95 /// <summary> … … 102 98 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 103 99 /// <returns>The result value of the function at the given point.</returns> 104 protected abstract double EvaluateFunction(RealVector point); 100 public abstract double EvaluateFunction(RealVector point); 101 102 /// <summary> 103 /// Gets the best known solution for this function. 104 /// </summary> 105 public abstract RealVector GetBestKnownSolution(int dimension); 105 106 } 106 107 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/SphereEvaluator.cs
r7259 r9363 132 132 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 133 133 /// <returns>The result value of the Sphere function at the given point.</returns> 134 p rotectedoverride double EvaluateFunction(RealVector point) {134 public override double EvaluateFunction(RealVector point) { 135 135 return Apply(point, C.Value, Alpha.Value); 136 136 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/SumSquaresEvaluator.cs
r7259 r9363 96 96 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 97 97 /// <returns>The result value of the Sum Squares function at the given point.</returns> 98 p rotectedoverride double EvaluateFunction(RealVector point) {98 public override double EvaluateFunction(RealVector point) { 99 99 return Apply(point); 100 100 } -
branches/OaaS/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/ZakharovEvaluator.cs
r7259 r9363 100 100 /// <param name="point">N-dimensional point for which the test function should be evaluated.</param> 101 101 /// <returns>The result value of the Zakharov function at the given point.</returns> 102 p rotectedoverride double EvaluateFunction(RealVector point) {102 public override double EvaluateFunction(RealVector point) { 103 103 return Apply(point); 104 104 }
Note: See TracChangeset
for help on using the changeset viewer.