Changeset 2150 for trunk/sources/HeuristicLab.FixedOperators
- Timestamp:
- 07/08/09 10:24:40 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.FixedOperators/3.2
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.FixedOperators/3.2/FixedGAMainBase.cs
r2129 r2150 87 87 } // FixedGABase 88 88 89 pr ivatevoid InitReplacement() {89 protected virtual void InitReplacement() { 90 90 ls = new LeftSelector(); 91 91 rr = new RightReducer(); … … 170 170 } // GetOperatorsFromScope 171 171 172 protected v oid DoReplacement(IScope scope) {172 protected virtual void DoReplacement(IScope scope) { 173 173 //// SequentialSubScopesProcessor 174 174 Execute(ls, scope.SubScopes[0]); -
trunk/sources/HeuristicLab.FixedOperators/3.2/FixedOSGAMain.cs
r2129 r2150 37 37 class FixedOSGAMain : FixedGAMainBase { 38 38 WeightedOffspringFitnessComparer wofc; 39 OffspringSelector os;39 protected IOperator os; 40 40 41 41 public FixedOSGAMain() 42 42 : base() { 43 Name = "Fixe OSGAMain";43 Name = "FixedOSGAMain"; 44 44 wofc = new WeightedOffspringFitnessComparer(); 45 45 os = new OffspringSelector(); … … 144 144 return new AtomicOperation(this, scope); 145 145 } 146 catch (Exception ex) {147 ex.ToString();148 }149 146 150 147 return null; -
trunk/sources/HeuristicLab.FixedOperators/3.2/HeuristicLab.FixedOperators-3.2.csproj
r2120 r2150 106 106 <Compile Include="HeuristicLabFixedOperatorsPlugin.cs" /> 107 107 <Compile Include="Properties\AssemblyInfo.cs" /> 108 <Compile Include="FixedSteadyStateOSGAMain.cs" /> 108 109 </ItemGroup> 109 110 <ItemGroup> … … 163 164 <Project>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</Project> 164 165 <Name>HeuristicLab.Logging-3.2</Name> 166 </ProjectReference> 167 <ProjectReference Include="..\..\HeuristicLab.Operators.Programmable\3.2\HeuristicLab.Operators.Programmable-3.2.csproj"> 168 <Project>{E3CCBFC6-900C-41B6-AFB8-6646DB097435}</Project> 169 <Name>HeuristicLab.Operators.Programmable-3.2</Name> 165 170 </ProjectReference> 166 171 <ProjectReference Include="..\..\HeuristicLab.Operators\3.2\HeuristicLab.Operators-3.2.csproj">
Note: See TracChangeset
for help on using the changeset viewer.