- Timestamp:
- 07/09/09 01:06:32 (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/FixedOperatorBase.cs
r2129 r2151 125 125 } 126 126 catch (Exception ex) { 127 throw new InvalidOperationException("Invalid Operation occured in FixedBase.Execute ");127 throw new InvalidOperationException("Invalid Operation occured in FixedBase.Execute " + ex.InnerException); 128 128 } 129 129 if (next != null) -
trunk/sources/HeuristicLab.FixedOperators/3.2/FixedSGAMain.cs
r2129 r2151 321 321 } 322 322 //long[] timesExecuteCreateChildren; 323 public FixedSGAMain() 324 : base() { 323 public FixedSGAMain() { 325 324 Name = "FixedSGAMain"; 326 325 } … … 401 400 } // try 402 401 catch (CancelException) { 403 //Console.WriteLine("Micro engine aborted by cancel flag.");404 402 return new AtomicOperation(this, scope); 405 }406 catch (Exception ex) {407 ex.ToString();408 403 } 409 404 -
trunk/sources/HeuristicLab.FixedOperators/3.2/HeuristicLab.FixedOperators-3.2.csproj
r2150 r2151 103 103 <Compile Include="FixedOperatorBase.cs" /> 104 104 <Compile Include="FixedOSGAMain.cs" /> 105 <Compile Include="FixedSAMain.cs" /> 105 106 <Compile Include="FixedSGAMain.cs" /> 106 107 <Compile Include="HeuristicLabFixedOperatorsPlugin.cs" /> … … 188 189 <Project>{9EF75B49-D507-44E0-BC5D-C200FDA53B9B}</Project> 189 190 <Name>HeuristicLab.Routing.TSP-3.2</Name> 191 </ProjectReference> 192 <ProjectReference Include="..\..\HeuristicLab.SA\3.2\HeuristicLab.SA-3.2.csproj"> 193 <Project>{F0F97CBA-61A2-471C-9973-F099202B3BE5}</Project> 194 <Name>HeuristicLab.SA-3.2</Name> 190 195 </ProjectReference> 191 196 <ProjectReference Include="..\..\HeuristicLab.Selection.OffspringSelection\3.2\HeuristicLab.Selection.OffspringSelection-3.2.csproj">
Note: See TracChangeset
for help on using the changeset viewer.