Changeset 16131 for branches/HeuristicLab.EvolutionTracking
- Timestamp:
- 09/10/18 10:06:49 (6 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Tests/HeuristicLab.EvolutionTracking.Tests.csproj
r12951 r16131 22 22 <DebugType>full</DebugType> 23 23 <Optimize>false</Optimize> 24 <OutputPath>..\..\..\trunk\ sources\bin\</OutputPath>24 <OutputPath>..\..\..\trunk\bin\</OutputPath> 25 25 <DefineConstants>DEBUG;TRACE</DefineConstants> 26 26 <ErrorReport>prompt</ErrorReport> … … 31 31 <DebugType>pdbonly</DebugType> 32 32 <Optimize>true</Optimize> 33 <OutputPath>..\..\..\trunk\ sources\bin\</OutputPath>33 <OutputPath>..\..\..\trunk\bin\</OutputPath> 34 34 <DefineConstants>TRACE</DefineConstants> 35 35 <ErrorReport>prompt</ErrorReport> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/HeuristicLab.EvolutionTracking.Views-3.4.csproj
r15561 r16131 19 19 <DebugType>full</DebugType> 20 20 <Optimize>false</Optimize> 21 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>21 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 22 22 <DefineConstants>DEBUG;TRACE</DefineConstants> 23 23 <ErrorReport>prompt</ErrorReport> … … 29 29 <DebugType>pdbonly</DebugType> 30 30 <Optimize>true</Optimize> 31 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>31 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 32 32 <DefineConstants>TRACE</DefineConstants> 33 33 <ErrorReport>prompt</ErrorReport> … … 43 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 44 44 <DebugSymbols>true</DebugSymbols> 45 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>45 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 46 46 <DefineConstants>DEBUG;TRACE</DefineConstants> 47 47 <DebugType>full</DebugType> … … 52 52 </PropertyGroup> 53 53 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 54 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>54 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 55 55 <DefineConstants>TRACE</DefineConstants> 56 56 <Optimize>true</Optimize> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/HeuristicLab.EvolutionTracking-3.4.csproj
r15757 r16131 19 19 <DebugType>full</DebugType> 20 20 <Optimize>false</Optimize> 21 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>21 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 22 22 <DefineConstants>DEBUG;TRACE</DefineConstants> 23 23 <ErrorReport>prompt</ErrorReport> … … 29 29 <DebugType>pdbonly</DebugType> 30 30 <Optimize>true</Optimize> 31 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>31 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 32 32 <DefineConstants>TRACE</DefineConstants> 33 33 <ErrorReport>prompt</ErrorReport> … … 43 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 44 44 <DebugSymbols>true</DebugSymbols> 45 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>45 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 46 46 <DefineConstants>DEBUG;TRACE</DefineConstants> 47 47 <DebugType>full</DebugType> … … 52 52 </PropertyGroup> 53 53 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 54 <OutputPath>..\..\..\..\trunk\ sources\bin\</OutputPath>54 <OutputPath>..\..\..\..\trunk\bin\</OutputPath> 55 55 <DefineConstants>TRACE</DefineConstants> 56 56 <Optimize>true</Optimize> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/RemovePopulationGraphFromResults.cs
r15757 r16131 43 43 44 44 public override IOperation Apply() { 45 var results = ResultCollectionParameter.ActualValue; 45 if (Parameters.ContainsKey(ResultCollectionParameterName)) { 46 var results = ResultCollectionParameter.ActualValue; 46 47 47 if (results.ContainsKey("PopulationGraph")) 48 results.Remove("PopulationGraph"); 48 if (results.ContainsKey("PopulationGraph")) 49 results.Remove("PopulationGraph"); 50 } 49 51 50 52 return base.Apply();
Note: See TracChangeset
for help on using the changeset viewer.