Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Templates/CompiledLinearProgrammingProblemDefinition.cs @ 16288

Last change on this file since 16288 was 16288, checked in by ddorfmei, 5 years ago

#2931:

  • added license information to all files
  • added missing storable and cloning constructors
  • fixed a bug that caused an exception when a Hive Slave tried to delete the files in the PluginTemp folder
File size: 2.1 KB
RevLine 
[16288]1using System;
2using System.Linq;
3using System.Collections.Generic;
4using Google.OrTools.LinearSolver;
5using HeuristicLab.Common;
6using HeuristicLab.Core;
[11753]7using HeuristicLab.Data;
[16172]8using HeuristicLab.MathematicalOptimization.LinearProgramming.Problems;
[11753]9using HeuristicLab.Optimization;
10using HeuristicLab.Problems.Programmable;
[16288]11using Variable = Google.OrTools.LinearSolver.Variable;
[11753]12
[16172]13namespace HeuristicLab.MathematicalOptimization.LinearProgramming {
[16233]14
[16172]15  public class CompiledLinearProgrammingProblemDefinition : CompiledProblemDefinition, ILinearProgrammingProblemDefinition {
16    private Variable x;
17    private Variable y;
[16288]18   
[11753]19    public override void Initialize() {
[11880]20      // Use vars.yourVariable to access variables in the variable store i.e. yourVariable
21      // Add additional initialization code e.g. private variables that you need for evaluating
[11753]22    }
[16288]23   
[16172]24    public void BuildModel(Solver solver) {
[11880]25      // Use vars.yourVariable to access variables in the variable store i.e. yourVariable
[16233]26      // Example model taken from https://developers.google.com/optimization/mip/integer_opt
[16172]27      // Define the decision variables
28      x = solver.MakeIntVar(0, 3.5, "x");
29      y = solver.MakeIntVar(0, double.PositiveInfinity, "y");
30      // Define the constraints
31      solver.Add(x + 7 * y <= 17.5);
32      // Define the objective
33      solver.Maximize(x + 10 * y);
[11753]34    }
[16288]35   
[16172]36    public void Analyze(Solver solver, ResultCollection results) {
[11880]37      // Use vars.yourVariable to access variables in the variable store i.e. yourVariable
[16172]38      // Write or update results given the solution variables of the decision variables
39      results.AddOrUpdateResult("x", new DoubleValue(x.SolutionValue()));
40      results.AddOrUpdateResult("y", new DoubleValue(y.SolutionValue()));
41      // The decision variables can also be retrieved from the solver
42      //results.AddOrUpdateResult("x", new DoubleValue(solver.LookupVariableOrNull("x").SolutionValue()));
43      //results.AddOrUpdateResult("y", new DoubleValue(solver.LookupVariableOrNull("y").SolutionValue()));
[11753]44    }
[16288]45   
[11880]46    // Implement further classes and methods
[11753]47  }
[16288]48}
49
Note: See TracBrowser for help on using the repository browser.