Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16131


Ignore:
Timestamp:
09/10/18 10:06:49 (6 years ago)
Author:
bburlacu
Message:

#1772: Update project paths, add extra check in RemovePopulationGraphFromResultsOperator

Location:
branches/HeuristicLab.EvolutionTracking
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Tests/HeuristicLab.EvolutionTracking.Tests.csproj

    r12951 r16131  
    2222    <DebugType>full</DebugType>
    2323    <Optimize>false</Optimize>
    24     <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
     24    <OutputPath>..\..\..\trunk\bin\</OutputPath>
    2525    <DefineConstants>DEBUG;TRACE</DefineConstants>
    2626    <ErrorReport>prompt</ErrorReport>
     
    3131    <DebugType>pdbonly</DebugType>
    3232    <Optimize>true</Optimize>
    33     <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
     33    <OutputPath>..\..\..\trunk\bin\</OutputPath>
    3434    <DefineConstants>TRACE</DefineConstants>
    3535    <ErrorReport>prompt</ErrorReport>
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/HeuristicLab.EvolutionTracking.Views-3.4.csproj

    r15561 r16131  
    1919    <DebugType>full</DebugType>
    2020    <Optimize>false</Optimize>
    21     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     21    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    2222    <DefineConstants>DEBUG;TRACE</DefineConstants>
    2323    <ErrorReport>prompt</ErrorReport>
     
    2929    <DebugType>pdbonly</DebugType>
    3030    <Optimize>true</Optimize>
    31     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     31    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    3232    <DefineConstants>TRACE</DefineConstants>
    3333    <ErrorReport>prompt</ErrorReport>
     
    4343  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
    4444    <DebugSymbols>true</DebugSymbols>
    45     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     45    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    4646    <DefineConstants>DEBUG;TRACE</DefineConstants>
    4747    <DebugType>full</DebugType>
     
    5252  </PropertyGroup>
    5353  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
    54     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     54    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    5555    <DefineConstants>TRACE</DefineConstants>
    5656    <Optimize>true</Optimize>
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/HeuristicLab.EvolutionTracking-3.4.csproj

    r15757 r16131  
    1919    <DebugType>full</DebugType>
    2020    <Optimize>false</Optimize>
    21     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     21    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    2222    <DefineConstants>DEBUG;TRACE</DefineConstants>
    2323    <ErrorReport>prompt</ErrorReport>
     
    2929    <DebugType>pdbonly</DebugType>
    3030    <Optimize>true</Optimize>
    31     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     31    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    3232    <DefineConstants>TRACE</DefineConstants>
    3333    <ErrorReport>prompt</ErrorReport>
     
    4343  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
    4444    <DebugSymbols>true</DebugSymbols>
    45     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     45    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    4646    <DefineConstants>DEBUG;TRACE</DefineConstants>
    4747    <DebugType>full</DebugType>
     
    5252  </PropertyGroup>
    5353  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
    54     <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
     54    <OutputPath>..\..\..\..\trunk\bin\</OutputPath>
    5555    <DefineConstants>TRACE</DefineConstants>
    5656    <Optimize>true</Optimize>
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/RemovePopulationGraphFromResults.cs

    r15757 r16131  
    4343
    4444    public override IOperation Apply() {
    45       var results = ResultCollectionParameter.ActualValue;
     45      if (Parameters.ContainsKey(ResultCollectionParameterName)) {
     46        var results = ResultCollectionParameter.ActualValue;
    4647
    47       if (results.ContainsKey("PopulationGraph"))
    48         results.Remove("PopulationGraph");
     48        if (results.ContainsKey("PopulationGraph"))
     49          results.Remove("PopulationGraph");
     50      }
    4951
    5052      return base.Apply();
Note: See TracChangeset for help on using the changeset viewer.