Changeset 14895
- Timestamp:
- 04/27/17 17:42:27 (8 years ago)
- Location:
- branches/OptimizationNetworks
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks/HeuristicLab.Networks.IntegratedOptimization.LocationRouting/3.3/HeuristicLab.Networks.IntegratedOptimization.LocationRouting-3.3.csproj
r14649 r14895 183 183 <Compile Include="LrpNetwork2.cs" /> 184 184 <Compile Include="LrpNetwork3.cs" /> 185 <Compile Include="LrpNetwork4.cs" /> 186 <Compile Include="LrpNetwork5.cs" /> 185 187 <Compile Include="LrpOrchestratorNode.cs" /> 186 188 <Compile Include="LrpOrchestratorNode2.cs" /> 187 189 <Compile Include="LrpOrchestratorNode3.cs" /> 190 <Compile Include="LrpOrchestratorNode4.cs" /> 191 <Compile Include="LrpOrchestratorNode5.cs" /> 188 192 <Compile Include="LrpUtils.cs" /> 189 193 <Compile Include="LrpNetwork1.cs" /> -
branches/OptimizationNetworks/HeuristicLab.Networks.IntegratedOptimization.LocationRouting/3.3/LrpUtils.cs
r14649 r14895 167 167 168 168 public static double Evaluate(FacilityLocationSolution flpSolution, VRPSolution[] vrpSolutions) { 169 return flpSolution.TotalOpeningCostsParameter.Value.Value + vrpSolutions.Sum(x => x.Quality.Value); 169 if (flpSolution.TotalOverbookedCapacityParameter.Value.Value > 0.0) 170 return flpSolution.FitnessValueParameter.Value.Value + vrpSolutions.Sum(x => x.Quality.Value); 171 else 172 return flpSolution.TotalOpeningCostsParameter.Value.Value + vrpSolutions.Sum(x => x.Quality.Value); 170 173 } 171 174 } -
branches/OptimizationNetworks/HeuristicLab.Problems.FacilityLocation.CplexSolver/3.3/FLP_1.mod
r14649 r14895 14 14 dvar boolean y[0..(I-1)]; //Eröffnung Depot i 15 15 dvar boolean z[0..(I-1)][0..(J-1)]; //Depot i beliefert Kunde j 16 17 execute 18 { 19 cplex.threads=1; 20 } 16 21 17 22 minimize -
branches/OptimizationNetworks/HeuristicLab.Problems.FacilityLocation.CplexSolver/3.3/FLP_2.mod
r14646 r14895 15 15 dvar boolean z[0..(I-1)][0..(J-1)]; //Depot i beliefert Kunde j 16 16 17 execute 18 { 19 cplex.threads=1; 20 } 21 17 22 minimize 18 23 ( sum ( i in 0..(I-1) ) ( f[i] * y[i] ) ); -
branches/OptimizationNetworks/HeuristicLab.Problems.FacilityLocation.CplexSolver/3.3/HeuristicLab.Problems.FacilityLocation.CplexSolver-3.3.csproj
r14649 r14895 93 93 <Private>False</Private> 94 94 </Reference> 95 <Reference Include="oplall, Version=12. 6.1.0, Culture=neutral, PublicKeyToken=7906592bc7cc7340, processorArchitecture=MSIL">95 <Reference Include="oplall, Version=12.7.0.0, Culture=neutral, PublicKeyToken=7906592bc7cc7340, processorArchitecture=MSIL"> 96 96 <SpecificVersion>False</SpecificVersion> 97 <HintPath>C:\Program Files\IBM\ILOG\CPLEX_Studio12 61\opl\lib\oplall.dll</HintPath>97 <HintPath>C:\Program Files\IBM\ILOG\CPLEX_Studio127\opl\lib\oplall.dll</HintPath> 98 98 </Reference> 99 99 <Reference Include="System" />
Note: See TracChangeset
for help on using the changeset viewer.