Changeset 6046 for branches/histogram/HeuristicLab.Optimization.Operators
- Timestamp:
- 04/23/11 10:00:31 (14 years ago)
- Location:
- branches/histogram
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram
- Property svn:ignore
-
old new 10 10 protoc.exe 11 11 HeuristicLab 3.3.5.1.ReSharper.user 12 *.psess 13 *.vsp
-
- Property svn:mergeinfo changed
/trunk/sources merged: 6026,6029-6031,6035-6037,6042-6045
- Property svn:ignore
-
branches/histogram/HeuristicLab.Optimization.Operators/3.3/HeuristicLab.Optimization.Operators-3.3.csproj
r5163 r6046 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" /> -
branches/histogram/HeuristicLab.Optimization.Operators/3.3/QualityComparator.cs
r5445 r6046 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.