Changeset 14153 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/ProblemBase.cs
- Timestamp:
- 07/21/16 14:33:53 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.2D/3.3/ProblemBase.cs
r14149 r14153 37 37 where TEnc : class, IEncoding 38 38 where TSol : class, IItem { 39 pr ivatereadonly string SolutionEvaluatorParameterName = "SolutionEvaluator";39 protected readonly string SolutionEvaluatorParameterName = "SolutionEvaluator"; 40 40 public readonly string EncodedSolutionName = "EncodedSolution"; 41 41 #region Default Instance 42 private static readonly BPPData DefaultInstance = new BPPData() {42 private readonly BPPData defaultInstance = new BPPData() { 43 43 Name = "2D BPP Default Instance", 44 44 Description = "The default instance for 2D Bin Packing.", … … 155 155 Parameters.Add(new FixedValueParameter<IntValue>("LowerBound", "A lower bound for the number of bins that is necessary to pack all items")); 156 156 157 Load( DefaultInstance);157 Load(defaultInstance); 158 158 } 159 159
Note: See TracChangeset
for help on using the changeset viewer.