Changeset 4997 for branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Encodings/Crossovers
- Timestamp:
- 11/30/10 01:08:19 (14 years ago)
- Location:
- branches/HeuristicLab.MetaOptimization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.MetaOptimization
- Property svn:ignore
-
old new 1 1 HeuristicLab.MetaOptimization.suo 2 2 HeuristicLab.MetaOptimization.Test 3 HeuristicLab.MetaOptimization.Tests 4 TestResults 5 HeuristicLab.MetaOptimization.vsmdi 6 Local.testsettings 7 TraceAndTestImpact.testsettings
-
- Property svn:ignore
-
branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Encodings/Crossovers/ParameterConfigurationCrossover.cs
r4839 r4997 73 73 IntegerVector integerChild = HeuristicLab.Encodings.IntegerVectorEncoding.DiscreteCrossover.Apply( 74 74 RandomParameter.ActualValue, 75 new IntegerVector(new IntArray(new int[] { ((IntValue)parameter1.ActualValue Configuration).Value })),76 new IntegerVector(new IntArray(new int[] { ((IntValue)parameter2.ActualValue Configuration).Value })));75 new IntegerVector(new IntArray(new int[] { ((IntValue)parameter1.ActualValue.Value).Value })), 76 new IntegerVector(new IntArray(new int[] { ((IntValue)parameter2.ActualValue.Value).Value }))); 77 77 return new IntValue(integerChild[0]); 78 78 }
Note: See TracChangeset
for help on using the changeset viewer.