Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/21/16 17:21:54 (8 years ago)
Author:
mkommend
Message:

#1087: Merged r14120, r14121, r14122, r14124, r14125, r14126, r14127, r14130, r14132, r14150, r14164 into stable.

Location:
stable
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/HeuristicLab.Problems.TestFunctions.MultiObjective-3.3.csproj

    r14121 r14165  
    1212    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    1313    <FileAlignment>512</FileAlignment>
    14     <SccProjectName>Svn</SccProjectName>
    15     <SccLocalPath>Svn</SccLocalPath>
    16     <SccAuxPath>Svn</SccAuxPath>
    17     <SccProvider>SubversionScc</SccProvider>
    1814  </PropertyGroup>
    1915  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     
    5551    <Reference Include="System.Windows.Forms" />
    5652    <Reference Include="System.Windows.Forms.DataVisualization" />
    57     <Reference Include="System.Drawing" />
    5853    <Reference Include="System.Xml.Linq" />
    5954    <Reference Include="System.Data.DataSetExtensions" />
     
    213208</PreBuildEvent>
    214209  </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>
    223210  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    224211       Other similar extension points exist, see Microsoft.Common.targets.
  • stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/MultiObjectiveTestFunctionProblem.cs

    r14111 r14165  
    5656      get { return (IValueParameter<DoubleArray>)Parameters["ReferencePoint"]; }
    5757    }
    58     public IValueParameter<DoubleMatrix> BestKnownFrontParameter {
    59       get { return (IValueParameter<DoubleMatrix>)Parameters["BestKnownFront"]; }
     58    public OptionalValueParameter<DoubleMatrix> BestKnownFrontParameter {
     59      get { return (OptionalValueParameter<DoubleMatrix>)Parameters["BestKnownFront"]; }
    6060    }
    6161
     
    118118      Parameters.Add(new ValueParameter<DoubleArray>("ReferencePoint", "The reference point used for hypervolume calculation."));
    119119      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"));
    121121
    122122      Encoding.LengthParameter = ProblemSizeParameter;
Note: See TracChangeset for help on using the changeset viewer.