Changeset 6121 for branches/Scheduling/HeuristicLab.Problems.Scheduling
- Timestamp:
- 05/04/11 12:02:35 (14 years ago)
- Location:
- branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3
- Files:
-
- 34 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3
-
Property
svn:ignore
set to
Plugin.cs
-
Property
svn:ignore
set to
-
branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/HeuristicLab.Problems.Scheduling-3.3.csproj
r6041 r6121 40 40 <Reference Include="System" /> 41 41 <Reference Include="System.Core" /> 42 <Reference Include="System.Drawing" /> 42 43 <Reference Include="System.Xml.Linq" /> 43 44 <Reference Include="System.Data.DataSetExtensions" /> … … 47 48 </ItemGroup> 48 49 <ItemGroup> 50 <Compile Include="Analyzers\BestSchedulingSolutionAnalyzer.cs" /> 51 <Compile Include="Encodings\JobSequenceMatrix\Crossovers\JSMCrossover.cs" /> 52 <Compile Include="Encodings\JobSequenceMatrix\Crossovers\JSMSXXCrossover.cs" /> 53 <Compile Include="Encodings\JobSequenceMatrix\JSMDecoder.cs" /> 54 <Compile Include="Encodings\JobSequenceMatrix\JSMRandomCreator.cs" /> 55 <Compile Include="Encodings\JobSequenceMatrix\JSMEncoding.cs" /> 56 <Compile Include="Encodings\JobSequenceMatrix\Manipulators\JSMManipulator.cs" /> 57 <Compile Include="Encodings\JobSequenceMatrix\Manipulators\JSMSwapManipulator.cs" /> 58 <Compile Include="Encodings\JSSPCrossover.cs" /> 59 <Compile Include="Encodings\JSSPEncoding.cs" /> 60 <Compile Include="Encodings\JSSPCreator.cs" /> 61 <Compile Include="Encodings\JSSPManipulator.cs" /> 62 <Compile Include="Evaluators\MakespanEvaluator.cs" /> 63 <Compile Include="Interfaces\IJSMOperator.cs" /> 64 <Compile Include="Interfaces\IJSSPCrossover.cs" /> 65 <Compile Include="Interfaces\IJSSPManipulator.cs" /> 66 <Compile Include="Resource.cs" /> 67 <Compile Include="JSSPEvaluator.cs" /> 68 <Compile Include="SchedulingCreator.cs" /> 69 <Compile Include="JSSPJob.cs" /> 70 <Compile Include="JobShopSchedulingProblem.cs" /> 71 <Compile Include="JSSPTask.cs" /> 72 <Compile Include="SchedulingOperator.cs" /> 73 <Compile Include="SchedulingProblem.cs" /> 74 <Compile Include="Task.cs" /> 75 <Compile Include="Plugin.cs" /> 49 76 <Compile Include="Properties\AssemblyInfo.cs" /> 77 <Compile Include="Schedule.cs" /> 50 78 </ItemGroup> 51 79 <ItemGroup> … … 55 83 </ItemGroup> 56 84 <ItemGroup> 85 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 86 <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project> 87 <Name>HeuristicLab.Collections-3.3</Name> 88 </ProjectReference> 89 <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj"> 90 <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project> 91 <Name>HeuristicLab.Common.Resources-3.3</Name> 92 </ProjectReference> 93 <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj"> 94 <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project> 95 <Name>HeuristicLab.Common-3.3</Name> 96 </ProjectReference> 97 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 98 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 99 <Name>HeuristicLab.Core-3.3</Name> 100 </ProjectReference> 101 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj"> 102 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 103 <Name>HeuristicLab.Data-3.3</Name> 104 </ProjectReference> 105 <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj"> 106 <Project>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</Project> 107 <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name> 108 </ProjectReference> 109 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> 110 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project> 111 <Name>HeuristicLab.Operators-3.3</Name> 112 </ProjectReference> 113 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> 114 <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project> 115 <Name>HeuristicLab.Optimization-3.3</Name> 116 </ProjectReference> 117 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj"> 118 <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project> 119 <Name>HeuristicLab.Parameters-3.3</Name> 120 </ProjectReference> 121 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> 122 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project> 123 <Name>HeuristicLab.Persistence-3.3</Name> 124 </ProjectReference> 57 125 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 58 126 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> 59 127 <Name>HeuristicLab.PluginInfrastructure-3.3</Name> 60 128 </ProjectReference> 129 </ItemGroup> 130 <ItemGroup> 131 <Folder Include="Encodings\PriorityRulesVector\" /> 61 132 </ItemGroup> 62 133 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset
for help on using the changeset viewer.