Changeset 4596 for trunk/sources/HeuristicLab.Optimization
- Timestamp:
- 10/14/10 13:36:46 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Problem.cs
r4564 r4596 31 31 32 32 namespace HeuristicLab.Optimization { 33 [Item("Problem", "Represents athe base class for a problem.")]33 [Item("Problem", "Represents the base class for a problem.")] 34 34 [StorableClass] 35 35 public abstract class Problem<T, U> : ParameterizedNamedItem, IProblem -
trunk/sources/HeuristicLab.Optimization/3.3/SingleObjectiveProblem.cs
r4564 r4596 26 26 27 27 namespace HeuristicLab.Optimization { 28 [Item("Single Objective Problem", "Represents athe base class for a single objective problem.")]28 [Item("Single Objective Problem", "Represents the base class for a single objective problem.")] 29 29 [StorableClass] 30 30 public abstract class SingleObjectiveProblem<T, U> : Problem<T, U>, ISingleObjectiveProblem … … 36 36 protected SingleObjectiveProblem() 37 37 : base() { 38 Parameters.Add(new ValueParameter<BoolValue>(MaximizationParameterName ));39 Parameters.Add(new ValueParameter<DoubleValue>(BestKnownQualityParameterName ));38 Parameters.Add(new ValueParameter<BoolValue>(MaximizationParameterName, "Set to false if the problem should be minimized.")); 39 Parameters.Add(new ValueParameter<DoubleValue>(BestKnownQualityParameterName, "The quality of the best known solution of this problem.")); 40 40 } 41 41 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.