Changeset 6042 for trunk/sources/HeuristicLab.Optimization.Operators
- Timestamp:
- 04/23/11 00:29:24 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization.Operators/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Operators/3.3/HeuristicLab.Optimization.Operators-3.3.csproj
r5163 r6042 19 19 </UpgradeBackupLocation> 20 20 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> 21 <TargetFrameworkProfile></TargetFrameworkProfile> 21 <TargetFrameworkProfile> 22 </TargetFrameworkProfile> 22 23 <PublishUrl>publish\</PublishUrl> 23 24 <Install>true</Install> … … 109 110 <Compile Include="MultiObjective\FastNonDominatedSort.cs" /> 110 111 <Compile Include="MultiObjective\RankAndCrowdingSorter.cs" /> 112 <Compile Include="ShakingOperator.cs" /> 111 113 <Compile Include="UserDefinedCrossover.cs" /> 112 114 <Compile Include="UserDefinedEvaluator.cs" /> -
trunk/sources/HeuristicLab.Optimization.Operators/3.3/QualityComparator.cs
r5445 r6042 51 51 Parameters.Add(new LookupParameter<DoubleValue>("LeftSide", "The left side of the comparison.")); 52 52 Parameters.Add(new ValueLookupParameter<DoubleValue>("RightSide", "The right side of the comparison.")); 53 Parameters.Add(new LookupParameter<BoolValue>("Result", "The result of the comparison ."));53 Parameters.Add(new LookupParameter<BoolValue>("Result", "The result of the comparison, true if the quality on the LeftSide is better than the quality on the RightSide.")); 54 54 Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, otherwise false.")); 55 55 }
Note: See TracChangeset
for help on using the changeset viewer.