Changeset 16718
- Timestamp:
- 03/27/19 21:47:10 (6 years ago)
- Location:
- branches/2931_OR-Tools_LP_MIP
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2931_OR-Tools_LP_MIP/HeuristicLab.Data.Views/3.3/HeuristicLab.Data.Views-3.3.csproj
r16373 r16718 297 297 </BootstrapperPackage> 298 298 </ItemGroup> 299 <ItemGroup>300 <EmbeddedResource Include="TextValueView.resx">301 <DependentUpon>TextValueView.cs</DependentUpon>302 </EmbeddedResource>303 </ItemGroup>304 299 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 305 300 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Algorithms/Solvers/CplexSolver.cs
r16582 r16718 30 30 namespace HeuristicLab.ExactOptimization.LinearProgramming { 31 31 32 [Item("CPLEX", "CPLEX (https://www.ibm.com/analytics/cplex-optimizer) must be installed and licen ced.")]32 [Item("CPLEX", "CPLEX (https://www.ibm.com/analytics/cplex-optimizer) must be installed and licensed.")] 33 33 [StorableClass] 34 34 public class CplexSolver : ExternalIncrementalLinearSolver { -
branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Algorithms/Solvers/GlopSolver.cs
r16582 r16718 40 40 "# examples:" + Environment.NewLine + 41 41 "# random_seed: 10" + Environment.NewLine + 42 "# use_dual_simplex: true (LP)" + Environment.NewLine;42 "# use_dual_simplex: true # Dual Simplex (LP)" + Environment.NewLine; 43 43 } 44 44 -
branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Algorithms/Solvers/GurobiSolver.cs
r16582 r16718 30 30 namespace HeuristicLab.ExactOptimization.LinearProgramming { 31 31 32 [Item("Gurobi", "Gurobi (http://www.gurobi.com/) must be installed and licen ced.")]32 [Item("Gurobi", "Gurobi (http://www.gurobi.com/) must be installed and licensed.")] 33 33 [StorableClass] 34 34 public class GurobiSolver : ExternalIncrementalLinearSolver { -
branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Algorithms/Solvers/ScipSolver.cs
r16582 r16718 32 32 namespace HeuristicLab.ExactOptimization.LinearProgramming { 33 33 34 [Item("SCIP", "SCIP (http://scip.zib.de/) must be installed and licen ced.")]34 [Item("SCIP", "SCIP (http://scip.zib.de/) must be installed and licensed.")] 35 35 [StorableClass] 36 36 public class ScipSolver : ExternalIncrementalLinearSolver {
Note: See TracChangeset
for help on using the changeset viewer.