- Timestamp:
- 07/21/16 17:21:54 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14120-14122,14124-14127,14130,14132,14150,14164
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/HeuristicLab.Problems.TestFunctions.MultiObjective-3.3.csproj
r14121 r14165 12 12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 13 13 <FileAlignment>512</FileAlignment> 14 <SccProjectName>Svn</SccProjectName>15 <SccLocalPath>Svn</SccLocalPath>16 <SccAuxPath>Svn</SccAuxPath>17 <SccProvider>SubversionScc</SccProvider>18 14 </PropertyGroup> 19 15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 55 51 <Reference Include="System.Windows.Forms" /> 56 52 <Reference Include="System.Windows.Forms.DataVisualization" /> 57 <Reference Include="System.Drawing" />58 53 <Reference Include="System.Xml.Linq" /> 59 54 <Reference Include="System.Data.DataSetExtensions" /> … … 213 208 </PreBuildEvent> 214 209 </PropertyGroup> 215 <PropertyGroup>216 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)217 set ProjectDir=$(ProjectDir)218 set SolutionDir=$(SolutionDir)219 set Outdir=$(Outdir)220 221 call PreBuildEvent.cmd</PreBuildEvent>222 </PropertyGroup>223 210 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 224 211 Other similar extension points exist, see Microsoft.Common.targets. -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/MultiObjectiveTestFunctionProblem.cs
r14111 r14165 56 56 get { return (IValueParameter<DoubleArray>)Parameters["ReferencePoint"]; } 57 57 } 58 public IValueParameter<DoubleMatrix> BestKnownFrontParameter {59 get { return ( IValueParameter<DoubleMatrix>)Parameters["BestKnownFront"]; }58 public OptionalValueParameter<DoubleMatrix> BestKnownFrontParameter { 59 get { return (OptionalValueParameter<DoubleMatrix>)Parameters["BestKnownFront"]; } 60 60 } 61 61 … … 118 118 Parameters.Add(new ValueParameter<DoubleArray>("ReferencePoint", "The reference point used for hypervolume calculation.")); 119 119 Parameters.Add(new ValueParameter<IMultiObjectiveTestFunction>("TestFunction", "The function that is to be optimized.", new Fonseca())); 120 Parameters.Add(new ValueParameter<DoubleMatrix>("BestKnownFront", "The currently best known Pareto front"));120 Parameters.Add(new OptionalValueParameter<DoubleMatrix>("BestKnownFront", "The currently best known Pareto front")); 121 121 122 122 Encoding.LengthParameter = ProblemSizeParameter;
Note: See TracChangeset
for help on using the changeset viewer.