Changeset 15616 for branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Contexts
- Timestamp:
- 01/15/18 12:46:56 (7 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3
- Files:
-
- 5 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/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
Note: See TracChangeset
for help on using the changeset viewer.