Changeset 3938 for trunk/sources
- Timestamp:
- 06/21/10 20:43:53 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 47 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/HeuristicLab.Problems.VehicleRouting.Views-3.3.csproj
r3920 r3938 75 75 <Reference Include="System.Drawing" /> 76 76 <Reference Include="System.Windows.Forms" /> 77 <Reference Include="System.Windows.Forms.DataVisualization, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" /> 77 78 <Reference Include="System.Xml.Linq"> 78 79 <RequiredTargetFramework>3.5</RequiredTargetFramework> … … 86 87 <ItemGroup> 87 88 <Compile Include="HeuristicLabProblemsVehicleRoutingViewsPlugin.cs" /> 89 <Compile Include="VRPSolutionView.cs"> 90 <SubType>UserControl</SubType> 91 </Compile> 92 <Compile Include="VRPSolutionView.Designer.cs"> 93 <DependentUpon>VRPSolutionView.cs</DependentUpon> 94 </Compile> 88 95 <Compile Include="Properties\AssemblyInfo.cs" /> 96 <Compile Include="VehicleRoutingProblemView.cs"> 97 <SubType>UserControl</SubType> 98 </Compile> 99 <Compile Include="VehicleRoutingProblemView.Designer.cs"> 100 <DependentUpon>VehicleRoutingProblemView.cs</DependentUpon> 101 </Compile> 89 102 </ItemGroup> 90 103 <ItemGroup> … … 113 126 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 114 127 <Name>HeuristicLab.Core-3.3</Name> 128 </ProjectReference> 129 <ProjectReference Include="..\..\HeuristicLab.Data.Views\3.3\HeuristicLab.Data.Views-3.3.csproj"> 130 <Project>{72104A0B-90E7-42F3-9ABE-9BBBADD4B943}</Project> 131 <Name>HeuristicLab.Data.Views-3.3</Name> 115 132 </ProjectReference> 116 133 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj"> … … 142 159 <Name>HeuristicLab.Parameters-3.3</Name> 143 160 </ProjectReference> 161 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> 162 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project> 163 <Name>HeuristicLab.Persistence-3.3</Name> 164 </ProjectReference> 144 165 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 145 166 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> … … 147 168 </ProjectReference> 148 169 <ProjectReference Include="..\..\HeuristicLab.Problems.VehicleRouting\3.3\HeuristicLab.Problems.VehicleRouting-3.3.csproj"> 149 <Project>{ D767C38D-8014-46B0-9A32-03A3AECCE34A}</Project>170 <Project>{6410BDA6-3641-42B2-BABA-AA626E2F6F71}</Project> 150 171 <Name>HeuristicLab.Problems.VehicleRouting-3.3</Name> 151 172 </ProjectReference> -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/HeuristicLab.Problems.VehicleRouting-3.3.csproj
r3920 r3938 84 84 </ItemGroup> 85 85 <ItemGroup> 86 <Compile Include="Analyzers\BestVRPSolutionAnalyzer.cs" /> 87 <Compile Include="Encodings\Alba\Crossovers\AlbaPermutationCrossover.cs" /> 88 <Compile Include="Encodings\Alba\Manipulators\AlbaPermutationManipulator.cs" /> 89 <Compile Include="Encodings\Alba\Creators\AlbaPushForwardInsertionCreator.cs" /> 90 <Compile Include="Encodings\Alba\Moves\AlbaMoveOperator.cs" /> 91 <Compile Include="Encodings\Alba\Moves\AlbaMoveMaker.cs" /> 92 <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveGenerator.cs" /> 93 <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveMaker.cs" /> 94 <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveTabuMaker.cs" /> 95 <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveSoftTabuCriterion.cs" /> 96 <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveHardTabuCriterion.cs" /> 97 <Compile Include="Encodings\VRPMoveOperator.cs" /> 98 <Compile Include="Encodings\VRPCrossover.cs" /> 99 <Compile Include="Encodings\VRPCreator.cs" /> 100 <Compile Include="Encodings\Alba\Creators\AlbaPermutationCreator.cs" /> 101 <Compile Include="Encodings\Alba\AlbaEncoding.cs" /> 102 <Compile Include="Encodings\Tour.cs" /> 103 <Compile Include="Encodings\VRPManipulator.cs" /> 104 <Compile Include="Evaluators\VRPEvaluator.cs" /> 86 105 <Compile Include="HeuristicLabProblemsVehicleRoutingPlugin.cs" /> 106 <Compile Include="Interfaces\IVRPCrossover.cs" /> 107 <Compile Include="Interfaces\IVRPEncoding.cs" /> 108 <Compile Include="Interfaces\IVRPEvaluator.cs" /> 109 <Compile Include="Interfaces\IVRPManipulator.cs" /> 110 <Compile Include="Interfaces\IVRPMoveEvaluator.cs" /> 111 <Compile Include="Interfaces\IVRPMoveOperator.cs" /> 112 <Compile Include="Interfaces\IVRPCreator.cs" /> 113 <Compile Include="Interfaces\IVRPOperator.cs" /> 114 <Compile Include="Encodings\Alba\Moves\ThreeOpt\AlbaTranslocationMoveEvaluator.cs" /> 115 <Compile Include="MoveEvaluators\VRPMoveEvaluator.cs" /> 116 <Compile Include="VRPSolution.cs" /> 87 117 <Compile Include="Properties\AssemblyInfo.cs" /> 118 <Compile Include="SolomonParser.cs" /> 119 <Compile Include="VehicleRoutingProblem.cs" /> 88 120 </ItemGroup> 89 121 <ItemGroup> … … 115 147 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project> 116 148 <Name>HeuristicLab.Operators-3.3</Name> 149 </ProjectReference> 150 <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj"> 151 <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project> 152 <Name>HeuristicLab.Optimization.Operators-3.3</Name> 117 153 </ProjectReference> 118 154 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/HeuristicLabProblemsVehicleRoutingPlugin.cs.frame
r3920 r3938 36 36 [PluginDependency("HeuristicLab.Operators", "3.3")] 37 37 [PluginDependency("HeuristicLab.Optimization", "3.3")] 38 [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")] 38 39 [PluginDependency("HeuristicLab.Parameters", "3.3")] 39 40 [PluginDependency("HeuristicLab.Persistence", "3.3")]
Note: See TracChangeset
for help on using the changeset viewer.