Changeset 6569 for branches/QAPAlgorithms/HeuristicLab.Encodings.RealVectorEncoding/3.3/Manipulators
- Timestamp:
- 07/17/11 22:51:11 (13 years ago)
- Location:
- branches/QAPAlgorithms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAPAlgorithms
- Property svn:ignore
-
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/QAPAlgorithms/HeuristicLab.Encodings.RealVectorEncoding/3.3/Manipulators/PolynomialAllPositionManipulator.cs
r5445 r6569 87 87 if (u < 0.5) { 88 88 delta = Math.Pow(2 * u, 1.0 / (contiguity.Value + 1)) - 1.0; 89 } else if (u > 0.5) {90 delta = 1.0 - Math.Pow(2.0 - 2.0 * u, 1.0 / contiguity.Value + 1);91 } else if (u == 0.5) delta = 0;89 } else if (u >= 0.5) { 90 delta = 1.0 - Math.Pow(2.0 - 2.0 * u, 1.0 / (contiguity.Value + 1)); 91 } 92 92 93 93 vector[index] += delta * maxManipulation.Value; -
branches/QAPAlgorithms/HeuristicLab.Encodings.RealVectorEncoding/3.3/Manipulators/PolynomialOnePositionManipulator.cs
r5445 r6569 89 89 if (u < 0.5) { 90 90 delta = Math.Pow(2 * u, 1.0 / (contiguity + 1)) - 1.0; 91 } else if (u > 0.5) {92 delta = 1.0 - Math.Pow(2.0 - 2.0 * u, 1.0 / contiguity + 1);93 } else delta = 0;91 } else if (u >= 0.5) { 92 delta = 1.0 - Math.Pow(2.0 - 2.0 * u, 1.0 / (contiguity + 1)); 93 } 94 94 95 95 return delta;
Note: See TracChangeset
for help on using the changeset viewer.