Changeset 14128 for branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Problem.cs
- Timestamp:
- 07/20/16 14:02:36 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.3D/3.3/Problem.cs
r14055 r14128 26 26 using HeuristicLab.Encodings.PermutationEncoding; 27 27 using HeuristicLab.Encodings.PackingEncoding.PackingSequence; 28 using HeuristicLab.Encodings.PackingEncoding.GroupingVector;29 28 using HeuristicLab.Problems.Instances; 30 using HeuristicLab.Encodings.PackingEncoding.MultiComponentVector;31 29 using HeuristicLab.PluginInfrastructure; 32 30 using HeuristicLab.Data; … … 131 129 if (SolutionCreator is PackingSequenceRandomCreator) { 132 130 PackingSolutionDecoderParameter.ValidValues.UnionWith(ApplicationManager.Manager.GetInstances<I3DPSDecoder>()); 133 } else if (SolutionCreator is GroupingVectorRandomCreator) {131 } /* else if (SolutionCreator is GroupingVectorRandomCreator) { 134 132 PackingSolutionDecoderParameter.ValidValues.UnionWith(ApplicationManager.Manager.GetInstances<I3DGVDecoder>()); 135 133 } else if (SolutionCreator is MultiComponentVectorRandomCreator) { 136 134 PackingSolutionDecoderParameter.ValidValues.UnionWith(ApplicationManager.Manager.GetInstances<I3DMCVDecoder>()); 137 } else {135 } */ else { 138 136 string error = "The given problem does not support the selected solution-creator."; 139 137 ErrorHandling.ShowErrorDialog(error, null);
Note: See TracChangeset
for help on using the changeset viewer.