- Timestamp:
- 03/01/12 15:15:22 (13 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GeneralizedQuadraticAssignmentProblem.cs
r7523 r7538 39 39 [StorableClass] 40 40 public sealed class GeneralizedQuadraticAssignmentProblem : SingleObjectiveHeuristicOptimizationProblem<IGQAPEvaluator, IGQAPSolutionCreator>, IStorableContent, 41 I ProblemInstanceConsumer<IQAPInstance>,42 I ProblemInstanceConsumer<ICTAPInstance>,43 I ProblemInstanceConsumer<ITSPInstance>,44 I ProblemInstanceConsumer<IATSPInstance>,45 I ProblemInstanceConsumer<IGQAPInstance> {41 IConsumable<QAPInstance>, 42 IConsumable<CTAPInstance>, 43 IConsumable<TSPInstance>, 44 IConsumable<ATSPInstance>, 45 IConsumable<GQAPInstance> { 46 46 47 47 public override Image ItemImage { … … 214 214 215 215 #region Problem Instance Consumptions 216 public bool LoadFrom( IQAPInstance instance) {216 public bool LoadFrom(QAPInstance instance) { 217 217 try { 218 218 Name = instance.Name; … … 240 240 } 241 241 242 public bool LoadFrom( ICTAPInstance instance) {242 public bool LoadFrom(CTAPInstance instance) { 243 243 try { 244 244 Name = instance.Name; … … 270 270 } 271 271 272 public bool LoadFrom( ITSPInstance instance) {272 public bool LoadFrom(TSPInstance instance) { 273 273 try { 274 274 if (instance.Dimension > 1000) return false; … … 304 304 } 305 305 306 public bool LoadFrom( IATSPInstance instance) {306 public bool LoadFrom(ATSPInstance instance) { 307 307 try { 308 308 Name = instance.Name; … … 336 336 } 337 337 338 public bool LoadFrom( IGQAPInstance instance) {338 public bool LoadFrom(GQAPInstance instance) { 339 339 try { 340 340 Name = instance.Name; -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Plugin.cs.frame
r7363 r7538 25 25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment", "3.3.6.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3.dll", PluginFileType.Assembly)] 27 [PluginDependency("HeuristicLab.Analysis", "3.3")] 27 28 [PluginDependency("HeuristicLab.Collections", "3.3")] 28 29 [PluginDependency("HeuristicLab.Common", "3.3")] … … 33 34 [PluginDependency("HeuristicLab.Operators", "3.3")] 34 35 [PluginDependency("HeuristicLab.Optimization", "3.3")] 36 [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")] 35 37 [PluginDependency("HeuristicLab.Parameters", "3.3")] 36 38 [PluginDependency("HeuristicLab.Persistence", "3.3")] 37 39 [PluginDependency("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Common", "3.3")] 40 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 38 41 public class HeuristicLabProblemsGeneralizedQuadraticAssignmentPlugin : PluginBase { 39 42 }
Note: See TracChangeset
for help on using the changeset viewer.