Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/21/16 14:33:53 (8 years ago)
Author:
gkronber
Message:

#1966: implemented 3d bin packing problems (using permutation and integer vector encoding) based on the 2d implementations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/ProblemBase.cs

    r14149 r14153  
    3737    where TEnc : class, IEncoding
    3838    where TSol : class, IItem {
    39     private readonly string SolutionEvaluatorParameterName = "SolutionEvaluator";
     39    protected readonly string SolutionEvaluatorParameterName = "SolutionEvaluator";
    4040    public readonly string EncodedSolutionName = "EncodedSolution";
    4141    #region Default Instance
    42     private static readonly BPPData DefaultInstance = new BPPData() {
     42    private readonly BPPData defaultInstance = new BPPData() {
    4343      Name = "2D BPP Default Instance",
    4444      Description = "The default instance for 2D Bin Packing.",
     
    155155      Parameters.Add(new FixedValueParameter<IntValue>("LowerBound", "A lower bound for the number of bins that is necessary to pack all items"));
    156156
    157       Load(DefaultInstance);
     157      Load(defaultInstance);
    158158    }
    159159
Note: See TracChangeset for help on using the changeset viewer.