Changeset 7544 for branches/MPI/HeuristicLab.Operators.MPISupport
- Timestamp:
- 03/05/12 10:18:06 (13 years ago)
- Location:
- branches/MPI/HeuristicLab.Operators.MPISupport/3.3
- Files:
-
- 16 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MPI/HeuristicLab.Operators.MPISupport/3.3/HeuristicLab.Operators.MPISupport-3.3.csproj
r7205 r7544 108 108 <Private>False</Private> 109 109 </Reference> 110 <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 111 <Reference Include="HeuristicLab.Encodings.PermutationEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 110 112 <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 111 113 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath> … … 116 118 <Private>False</Private> 117 119 </Reference> 120 <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 118 121 <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 119 122 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath> … … 124 127 <Private>False</Private> 125 128 </Reference> 129 <Reference Include="HeuristicLab.Problems.VehicleRouting-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 126 130 <Reference Include="MPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=29b4a045737654fe, processorArchitecture=MSIL"> 127 131 <HintPath>..\..\HeuristicLab.ExtLibs\HeuristicLab.MPInet\1.0.0\MPI.dll</HintPath> … … 140 144 </ItemGroup> 141 145 <ItemGroup> 146 <Compile Include="BinaryTransport\Core\VariableTransfer.cs" /> 147 <Compile Include="BinaryTransport\Core\ScopeTransfer.cs" /> 148 <Compile Include="BinaryTransport\Data\IntValueTransfer.cs" /> 149 <Compile Include="BinaryTransport\Data\DoubleValueTransfer.cs" /> 150 <Compile Include="BinaryTransport\ItemTransfer.cs" /> 151 <Compile Include="BinaryTransport\MPIBinaryTransportWrapper.cs" /> 152 <Compile Include="BinaryTransport\Permutation\PermutationTransfer.cs" /> 153 <Compile Include="BinaryTransport\VRP\VRPTransfer.cs" /> 154 <Compile Include="MPIHelper.cs" /> 155 <Compile Include="MPISolutionsCreator.cs" /> 142 156 <Compile Include="MPITransportWrapper.cs" /> 143 157 <Compile Include="MPIUnidirectionalRingMigrator.cs" /> 158 <Compile Include="MPIUniformSubscopesProcessor.cs" /> 144 159 <Compile Include="Plugin.cs" /> 145 160 <Compile Include="Properties\AssemblyInfo.cs" /> … … 167 182 </BootstrapperPackage> 168 183 </ItemGroup> 184 <ItemGroup /> 169 185 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 170 186 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/MPI/HeuristicLab.Operators.MPISupport/3.3/Plugin.cs.frame
r7205 r7544 35 35 [PluginDependency("HeuristicLab.Collections", "3.3")] 36 36 [PluginDependency("HeuristicLab.Optimization", "3.3")] 37 [PluginDependency("HeuristicLab.Data", "3.3")] 38 [PluginDependency("HeuristicLab.Parameters", "3.3")] 39 [PluginDependency("HeuristicLab.Encodings.PermutationEncoding", "3.3")] 40 [PluginDependency("HeuristicLab.Problems.VehicleRouting", "3.4")] 37 41 public class HeuristicLabOperatorsMPISupportPlugin : PluginBase { 38 42 }
Note: See TracChangeset
for help on using the changeset viewer.