- Timestamp:
- 06/04/08 23:48:05 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.RealVector
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.RealVector/HeuristicLab.RealVector.csproj
r111 r293 46 46 <Compile Include="CompleteContinuousCrossover.cs" /> 47 47 <Compile Include="BoundsChecker.cs" /> 48 <Compile Include="ContinuousManipulator.cs" /> 48 49 <Compile Include="DiscreteCrossover.cs" /> 49 50 <Compile Include="DiscreteMultiCrossover.cs" /> -
trunk/sources/HeuristicLab.RealVector/MichalewiczNonUniformAllPositionsManipulator.cs
r104 r293 68 68 vector[i] = vector[i] - Delta(random, currentGeneration, vector[i] - min, maximumGenerations, generationsDependency); 69 69 } 70 71 // DISCUSS WITH adoppelb 72 // if (vector[i] < min) vector[i] = min; 73 // else if (vector[i] > max) vector[i] = max; 70 74 } 71 75 -
trunk/sources/HeuristicLab.RealVector/MichalewiczNonUniformOnePositionManipulator.cs
r104 r293 69 69 } 70 70 71 // DISCUSS WITH adoppelb 72 // if (vector[pos] < min) vector[pos] = min; 73 // else if (vector[pos] > max) vector[pos] = max; 74 71 75 return vector; 72 76 }
Note: See TracChangeset
for help on using the changeset viewer.