Changeset 590
- Timestamp:
- 09/24/08 17:57:53 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/HeuristicLab.Operators.csproj
r582 r590 99 99 <Compile Include="Sorter.cs" /> 100 100 <Compile Include="StochasticBranch.cs" /> 101 <Compile Include="SubScopesRemover.cs" /> 101 102 <Compile Include="UnequalToComparator.cs" /> 102 103 <Compile Include="UniformSequentialSubScopesProcessor.cs" /> -
trunk/sources/HeuristicLab.SimOpt/HeuristicLab.SimOpt.csproj
r584 r590 60 60 <Compile Include="SimOptSequentialSubOperatorProcessor.cs" /> 61 61 <Compile Include="SimOptSquentialSubOperatorCrossover.cs" /> 62 <Compile Include="SubScopesRemover.cs" />63 62 <Compile Include="Swap2PermutationManipulator.cs" /> 64 63 <Compile Include="RandomDoubleInitializer.cs" /> -
trunk/sources/HeuristicLab.SimOpt/SimOptSquentialSubOperatorCrossover.cs
r584 r590 46 46 for (int n = 0 ; n < SubOperators.Count ; n++) 47 47 co.AddOperation(new AtomicOperation(SubOperators[n], child)); 48 co.AddOperation(new AtomicOperation(new SubScopesRemover(), child));48 co.AddOperation(new AtomicOperation(new Operators.SubScopesRemover(), child)); 49 49 } 50 50 return co;
Note: See TracChangeset
for help on using the changeset viewer.