- Timestamp:
- 09/14/12 18:58:15 (13 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators ¶
- Property svn:ignore
-
TabularUnified
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
-
TabularUnified branches/GP-MoveOperators/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs ¶
r8206 r8660 255 255 } 256 256 protected override void Problem_OperatorsChanged(object sender, EventArgs e) { 257 foreach (IOperator op in Problem.Operators ) ParameterizeStochasticOperator(op);257 foreach (IOperator op in Problem.Operators.OfType<IOperator>()) ParameterizeStochasticOperator(op); 258 258 ParameterizeIterationBasedOperators(); 259 259 UpdateCrossovers(); -
TabularUnified branches/GP-MoveOperators/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/HeuristicLab.Algorithms.GeneticAlgorithm-3.3.csproj ¶
r6866 r8660 214 214 --> 215 215 <PropertyGroup> 216 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)216 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 217 217 set ProjectDir=$(ProjectDir) 218 218 set SolutionDir=$(SolutionDir) … … 221 221 call PreBuildEvent.cmd 222 222 </PreBuildEvent> 223 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 224 export ProjectDir=$(ProjectDir) 225 export SolutionDir=$(SolutionDir) 226 227 $SolutionDir/PreBuildEvent.sh 228 </PreBuildEvent> 223 229 </PropertyGroup> 224 230 </Project> -
TabularUnified branches/GP-MoveOperators/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Plugin.cs.frame ¶
r7259 r8660 26 26 /// Plugin class for HeuristicLab.Algorithms.GeneticAlgorithm plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3. 6.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3.7.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
TabularUnified branches/GP-MoveOperators/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Properties/AssemblyInfo.cs.frame ¶
r7259 r8660 53 53 // by using the '*' as shown below: 54 54 [assembly: AssemblyVersion("3.3.0.0")] 55 [assembly: AssemblyFileVersion("3.3. 6.$WCREV$")]55 [assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.