Changeset 8660 for branches/GP-MoveOperators/HeuristicLab.Optimization
- Timestamp:
- 09/14/12 18:58:15 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 5 edited
- 7 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs
r8206 r8660 273 273 protected virtual void OnPrepared() { 274 274 ExecutionTime = TimeSpan.Zero; 275 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects(new HashSet< string>() { "runs"}).OfType<IStatefulItem>()) {275 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects(new HashSet<object>() { Runs }).OfType<IStatefulItem>()) { 276 276 statefulObject.InitializeState(); 277 277 } … … 294 294 public event EventHandler Stopped; 295 295 protected virtual void OnStopped() { 296 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects(new HashSet< string>() { "runs"}).OfType<IStatefulItem>()) {296 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects(new HashSet<object>() { Runs }).OfType<IStatefulItem>()) { 297 297 statefulObject.ClearState(); 298 298 } -
branches/GP-MoveOperators/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r7228 r8660 114 114 </ItemGroup> 115 115 <ItemGroup> 116 <Compile Include="Interfaces\ISingleObjectivePathRelinker.cs" /> 117 <Compile Include="Interfaces\ISingleObjectiveImprovementOperator.cs" /> 118 <Compile Include="Interfaces\ISingleObjectiveSolutionSimilarityCalculator.cs" /> 119 <Compile Include="Interfaces\IImprovementOperator.cs" /> 120 <Compile Include="Interfaces\IPathRelinker.cs" /> 121 <Compile Include="Interfaces\ISimilarityBasedOperator.cs" /> 122 <Compile Include="Interfaces\ISolutionSimilarityCalculator.cs" /> 116 123 <Compile Include="RunCollectionModification\RunCollectionRunRemover.cs" /> 117 124 <Compile Include="Plugin.cs" /> … … 274 281 --> 275 282 <PropertyGroup> 276 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)283 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 277 284 set ProjectDir=$(ProjectDir) 278 285 set SolutionDir=$(SolutionDir) … … 281 288 call PreBuildEvent.cmd 282 289 </PreBuildEvent> 290 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 291 export ProjectDir=$(ProjectDir) 292 export SolutionDir=$(SolutionDir) 293 294 $SolutionDir/PreBuildEvent.sh 295 </PreBuildEvent> 283 296 </PropertyGroup> 284 297 </Project> -
branches/GP-MoveOperators/HeuristicLab.Optimization/3.3/Plugin.cs.frame
r7259 r8660 26 26 /// Plugin class for HeuristicLab.Optimization plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Optimization", "3.3. 6.$WCREV$")]28 [Plugin("HeuristicLab.Optimization", "3.3.7.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Optimization-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/GP-MoveOperators/HeuristicLab.Optimization/3.3/Properties/AssemblyInfo.cs.frame
r7259 r8660 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3. 6.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.