Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/08/18 17:10:53 (6 years ago)
Author:
ddorfmei
Message:

#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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Problems/LinearProgrammingProblem.cs

    r16233 r16288  
    11#region License Information
    2 
    32/* HeuristicLab
    43 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    1918 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    2019 */
    21 
    22 #endregion License Information
     20#endregion
    2321
    2422using System.Drawing;
     
    4442    }
    4543
    46     private LinearProgrammingProblem(LinearProgrammingProblem original, Cloner cloner)
     44    protected LinearProgrammingProblem(LinearProgrammingProblem original, Cloner cloner)
    4745      : base(original, cloner) {
    4846      RegisterEvents();
     
    5048
    5149    [StorableConstructor]
    52     private LinearProgrammingProblem(bool deserializing) : base(deserializing) { }
     50    protected LinearProgrammingProblem(bool deserializing) : base(deserializing) { }
    5351
    5452    public new static Image StaticItemImage => VSImageLibrary.Script;
Note: See TracChangeset for help on using the changeset viewer.