Changeset 15616
- Timestamp:
- 01/15/18 12:46:56 (7 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3
- Property svn:ignore
-
old new 1 1 obj 2 *.user
-
- Property svn:ignore
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/CPLEX/CplexContext.cs
r15574 r15616 26 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.CPLEX { 27 27 [Item("CPLEX Context", "A context for CPLEX solvers.")] 28 [StorableClass] 28 29 public class CplexContext : SingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> { 29 30 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Evolutionary/ESGQAPSolution.cs
r15615 r15616 27 27 28 28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.Evolutionary { 29 [Item("ES-specific GQAP Solution", "GQAP Solution that holds a strategy parameter")] 29 30 [StorableClass] 30 [Item("ES-specific GQAP Solution", "GQAP Solution that holds a strategy parameter")]31 31 public class ESGQAPSolution : GQAPSolution { 32 32 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/GRASP/GRASP.cs
r15574 r15616 161 161 Results.Add(new Result("BestQuality", new DoubleValue(Context.BestQuality))); 162 162 Results.Add(new Result("BestSolution", typeof(GQAPSolution))); 163 164 Context.RunOperator(Analyzer, cancellationToken);165 163 } 166 164 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Contexts/BasicContext.cs
r15574 r15616 30 30 31 31 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 32 [Item("Basic Context", "A base class for algorithms' contexts.")] 33 [StorableClass] 32 34 public class BasicContext : ParameterizedNamedItem, IContext { 33 35 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Contexts/PopulationContext.cs
r15564 r15616 28 28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 29 29 [Item("Population Context", "A context for population-based algorithms.")] 30 [StorableClass] 30 31 public abstract class PopulationContext<TSolutionScope> : StochasticContext 31 32 where TSolutionScope: class, IScope { -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Contexts/SingleSolutionContext.cs
r15562 r15616 26 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 27 27 [Item("Single Solution Context", "A context for single solution algorithms.")] 28 [StorableClass] 28 29 public abstract class SingleSolutionContext<TSolutionScope> : StochasticContext 29 30 where TSolutionScope: class, IScope { -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Contexts/StochasticContext.cs
r15563 r15616 26 26 27 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 28 [Item("Stochastic Context", "A base class for stochastic algorithms' contexts.")] 29 [StorableClass] 28 30 public class StochasticContext : BasicContext, IStochasticContext { 29 31 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LAHC/LAHCContext.cs
r15572 r15616 27 27 28 28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LAHC { 29 [Item("LAHC Context", "Context for late-acceptance hill climber")] 30 [StorableClass] 29 31 public sealed class LAHCContext : SingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> { 30 32 [Storable] -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LAHC/pLAHCContext.cs
r15572 r15616 27 27 28 28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LAHC { 29 [Item("pLAHC-s Context", "Context for parameterless late-acceptance hill climber with seeding.")] 30 [StorableClass] 29 31 public sealed class PLAHCContext : SingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> { 30 32 [Storable] -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/LocalSearchContext.cs
r15572 r15616 26 26 27 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSearch { 28 [Item("Local Search Context", "Context for local search algorithms.")] 29 [StorableClass] 28 30 public sealed class LocalSearchContext : SingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> { 29 31 [Storable] -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSolverNet/LocalSolverContext.cs
r15575 r15616 27 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSolverNet { 28 28 [Item("LocalSolver Context", "A context for CPLEX solvers.")] 29 [StorableClass] 29 30 public class LocalSolverContext : SingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> { 30 31
Note: See TracChangeset
for help on using the changeset viewer.