Changeset 3413 for trunk/sources/HeuristicLab.Optimization.Operators
- Timestamp:
- 04/19/10 17:33:12 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization.Operators/3.3
- Files:
-
- 1 deleted
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Operators/3.3/HeuristicLab.Optimization.Operators-3.3.csproj
r3384 r3413 81 81 </ItemGroup> 82 82 <ItemGroup> 83 <Compile Include="OffspringSelector.cs" />84 <Compile Include="ParentsQualityComparator.cs" />85 83 <Compile Include="ProbabilisticQualityComparator.cs" /> 86 84 <Compile Include="ResultsCollector.cs" /> … … 96 94 <Compile Include="SolutionsCreator.cs" /> 97 95 <Compile Include="UnidirectionalRingMigrator.cs" /> 96 <Compile Include="WeightedParentsQualityComparator.cs" /> 98 97 </ItemGroup> 99 98 <ItemGroup> -
trunk/sources/HeuristicLab.Optimization.Operators/3.3/WeightedParentsQualityComparator.cs
r3407 r3413 30 30 31 31 namespace HeuristicLab.Optimization.Operators { 32 [Item(" ParentsQualityComparator", "Compares the quality against that of its parents (assumes the parents are subscopes to the child scope). This operator works with any number of subscopes > 0.")]32 [Item("WeightedParentsQualityComparator", "Compares the quality against that of its parents (assumes the parents are subscopes to the child scope). This operator works with any number of subscopes > 0.")] 33 33 [StorableClass] 34 public class ParentsQualityComparator : SingleSuccessorOperator, ISubScopesQualityComparator {34 public class WeightedParentsQualityComparator : SingleSuccessorOperator, ISubScopesQualityComparator { 35 35 public IValueLookupParameter<BoolValue> MaximizationParameter { 36 36 get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; } … … 49 49 } 50 50 51 public ParentsQualityComparator()51 public WeightedParentsQualityComparator() 52 52 : base() { 53 53 Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, false otherwise"));
Note: See TracChangeset
for help on using the changeset viewer.