Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/29/19 17:45:06 (5 years ago)
Author:
ddorfmei
Message:

#2931: solved the issues found during the review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Algorithms/Solvers/GlopSolver.cs

    r16405 r16582  
    2121
    2222using System;
     23using Google.OrTools.LinearSolver;
    2324using HeuristicLab.Common;
    2425using HeuristicLab.Core;
     
    2627using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2728
    28 namespace HeuristicLab.MathematicalOptimization.LinearProgramming {
     29namespace HeuristicLab.ExactOptimization.LinearProgramming {
    2930
    3031  [Item("Glop", "Glop (https://developers.google.com/optimization/lp/glop) can be used out of the box.")]
     
    3738        "# for file format, see Protocol Buffers text format (https://developers.google.com/protocol-buffers/docs/overview#whynotxml)" + Environment.NewLine +
    3839        "# for parameters, see https://github.com/google/or-tools/blob/v6.10/ortools/glop/parameters.proto" + Environment.NewLine +
    39         "# example:" + Environment.NewLine +
    40         "# random_seed: 10" + Environment.NewLine;
     40        "# examples:" + Environment.NewLine +
     41        "# random_seed: 10" + Environment.NewLine +
     42        "# use_dual_simplex: true (LP)" + Environment.NewLine;
    4143    }
    4244
     
    5052    }
    5153
    52     protected override OptimizationProblemType OptimizationProblemType =>
    53       OptimizationProblemType.GlopLinearProgramming;
     54    protected override Solver.OptimizationProblemType OptimizationProblemType =>
     55      Solver.OptimizationProblemType.GlopLinearProgramming;
     56
     57    public override IDeepCloneable Clone(Cloner cloner) => new GlopSolver(this, cloner);
    5458  }
    5559}
Note: See TracChangeset for help on using the changeset viewer.