Changeset 2790 for trunk/sources/HeuristicLab.Permutation
- Timestamp:
- 02/13/10 04:37:49 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Permutation/3.3
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Permutation/3.3
- Property svn:ignore
-
old new 1 *.user 2 HeuristicLabPermutationPlugin.cs 1 3 bin 2 4 obj 3 *.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Permutation/3.3/HeuristicLab.Permutation-3.3.csproj
r1691 r2790 81 81 </ItemGroup> 82 82 <ItemGroup> 83 <Compile Include="AbsolutePositionTopologicalCrossover.cs" /> 84 <Compile Include="CosaCrossover.cs"> 85 <SubType>Code</SubType> 86 </Compile> 87 <Compile Include="CyclicCrossover.cs"> 88 <SubType>Code</SubType> 89 </Compile> 90 <Compile Include="EdgeRecombinationCrossover.cs"> 91 <SubType>Code</SubType> 92 </Compile> 93 <Compile Include="InsertionManipulator.cs" /> 94 <Compile Include="InversionManipulator.cs" /> 95 <Compile Include="MaximalPreservativeCrossover.cs"> 96 <SubType>Code</SubType> 97 </Compile> 98 <Compile Include="OrderBasedCrossover.cs"> 99 <SubType>Code</SubType> 100 </Compile> 101 <Compile Include="OrderCrossover.cs"> 102 <SubType>Code</SubType> 103 </Compile> 104 <Compile Include="PartiallyMatchedCrossover.cs"> 105 <SubType>Code</SubType> 106 </Compile> 107 <Compile Include="PermutationCrossoverBase.cs" /> 83 <None Include="HeuristicLabPermutationPlugin.cs.frame" /> 108 84 <Compile Include="HeuristicLabPermutationPlugin.cs" /> 109 <Compile Include="Permutation.cs" />110 <Compile Include="PermutationManipulatorBase.cs" />111 <Compile Include="PositionBasedCrossover.cs">112 <SubType>Code</SubType>113 </Compile>114 85 <Compile Include="Properties\AssemblyInfo.cs" /> 115 <Compile Include="RandomPermutationGenerator.cs" />116 <Compile Include="ScrambleManipulator.cs" />117 <Compile Include="Swap2Manipulator.cs" />118 <Compile Include="Swap3Manipulator.cs" />119 <Compile Include="TranslocationInversionManipulator.cs" />120 <Compile Include="TranslocationManipulator.cs" />121 86 </ItemGroup> 122 87 <ItemGroup> … … 160 125 set Outdir=$(Outdir) 161 126 162 call PreBuildEvent.cmd</PreBuildEvent> 127 call PreBuildEvent.cmd 128 SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabPermutationPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabPermutationPlugin.cs"</PreBuildEvent> 163 129 </PropertyGroup> 164 130 </Project> -
trunk/sources/HeuristicLab.Permutation/3.3/Properties/AssemblyInfo.frame
r1689 r2790 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Runtime.CompilerServices; 24 24 using System.Runtime.InteropServices; 25 using HeuristicLab.PluginInfrastructure;26 25 27 26 // General Information about an assembly is controlled through the following … … 29 28 // associated with an assembly. 30 29 [assembly: AssemblyTitle("HeuristicLab.Permutation")] 31 [assembly: AssemblyDescription("HeuristicLab permutation operators")]30 [assembly: AssemblyDescription("HeuristicLab permutation encoding and related operators")] 32 31 [assembly: AssemblyConfiguration("")] 33 32 [assembly: AssemblyCompany("")] 34 33 [assembly: AssemblyProduct("HeuristicLab")] 35 [assembly: AssemblyCopyright("(c) 2002-20 08HEAL")]34 [assembly: AssemblyCopyright("(c) 2002-2010 HEAL")] 36 35 [assembly: AssemblyTrademark("")] 37 36 [assembly: AssemblyCulture("")] … … 54 53 // You can specify all the values or you can default the Revision and Build Numbers 55 54 // by using the '*' as shown below: 56 [assembly: AssemblyVersion("3.3.0. $WCREV$")]55 [assembly: AssemblyVersion("3.3.0.0")] 57 56 [assembly: AssemblyFileVersion("3.3.0.$WCREV$")] 58 [assembly: AssemblyBuildDate("$WCNOW$")]
Note: See TracChangeset
for help on using the changeset viewer.