Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet/GQAPBinarySolver.cs
r15713 r16728 22 22 using System; 23 23 using System.Threading; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; … … 27 28 using HeuristicLab.Encodings.IntegerVectorEncoding; 28 29 using HeuristicLab.Optimization; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 30 using localsolver; 31 31 32 32 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSolverNet { 33 33 [Item("LocalSolver Binary (GQAP)", "LocalSolver algorithm solving the GQAP using 0-1 decision variables")] 34 [Storable Class]34 [StorableType("E9040268-4240-4EF7-8E9A-6991D0831D06")] 35 35 [Creatable(CreatableAttribute.Categories.Algorithms)] 36 36 public sealed class GQAPBinarySolver : ContextAlgorithm<LocalSolverContext, IntegerVectorEncoding> { … … 56 56 57 57 [StorableConstructor] 58 private GQAPBinarySolver( bool deserializing) : base(deserializing) { }58 private GQAPBinarySolver(StorableConstructorFlag _) : base(_) { } 59 59 private GQAPBinarySolver(GQAPBinarySolver original, Cloner cloner) 60 60 : base(original, cloner) { -
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet/GQAPIntegerSolver.cs
r15713 r16728 22 22 using System; 23 23 using System.Threading; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; … … 27 28 using HeuristicLab.Encodings.IntegerVectorEncoding; 28 29 using HeuristicLab.Optimization; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 30 using localsolver; 31 31 32 32 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSolverNet { 33 33 [Item("LocalSolver Integer (GQAP)", "LocalSolver algorithm solving the GQAP using integer decision variables")] 34 [Storable Class]34 [StorableType("6D0D77CE-A8DE-41EA-9674-A1D59782D03B")] 35 35 [Creatable(CreatableAttribute.Categories.Algorithms)] 36 36 public sealed class GQAPIntegerSolver : ContextAlgorithm<LocalSolverContext, IntegerVectorEncoding> { … … 55 55 56 56 [StorableConstructor] 57 private GQAPIntegerSolver( bool deserializing) : base(deserializing) { }57 private GQAPIntegerSolver(StorableConstructorFlag _) : base(_) { } 58 58 private GQAPIntegerSolver(GQAPIntegerSolver original, Cloner cloner) 59 59 : base(original, cloner) { -
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet/GQAPListSolver.cs
r15890 r16728 22 22 using System; 23 23 using System.Threading; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; … … 27 28 using HeuristicLab.Encodings.IntegerVectorEncoding; 28 29 using HeuristicLab.Optimization; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;30 30 using localsolver; 31 31 32 32 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSolverNet { 33 33 [Item("LocalSolver List (GQAP)", "LocalSolver algorithm solving the GQAP using list decision variables")] 34 [Storable Class]34 [StorableType("BBB27FAA-DCFD-4DB4-A465-4A02E1A0EDA9")] 35 35 [Creatable(CreatableAttribute.Categories.Algorithms)] 36 36 public sealed class GQAPListSolver : ContextAlgorithm<LocalSolverContext, IntegerVectorEncoding> { … … 55 55 56 56 [StorableConstructor] 57 private GQAPListSolver( bool deserializing) : base(deserializing) { }57 private GQAPListSolver(StorableConstructorFlag _) : base(_) { } 58 58 private GQAPListSolver(GQAPListSolver original, Cloner cloner) 59 59 : base(original, cloner) { -
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet/LocalSolverContext.cs
r15700 r16728 20 20 #endregion 21 21 22 using HEAL.Attic; 22 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Parameters; 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;26 26 27 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSolverNet { 28 28 [Item("LocalSolver Context", "A context for CPLEX solvers.")] 29 [Storable Class]29 [StorableType("DAE4D0C7-AFE1-4FCF-9DD5-899E4DC4FD9E")] 30 30 public class LocalSolverContext : SingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> { 31 31 … … 45 45 46 46 [StorableConstructor] 47 protected LocalSolverContext( bool deserializing) : base(deserializing) { }47 protected LocalSolverContext(StorableConstructorFlag _) : base(_) { } 48 48 protected LocalSolverContext(LocalSolverContext original, Cloner cloner) 49 49 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.