Changeset 10271 for branches/HeuristicLab.EvolutionTracking
- Timestamp:
- 12/23/13 14:26:04 (11 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking
- Files:
-
- 2 added
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphChart.Designer.cs
r10269 r10271 1 namespace HeuristicLab.Evolution aryTracking.Views {1 namespace HeuristicLab.EvolutionTracking.Views { 2 2 partial class GenealogyGraphChart { 3 3 /// <summary> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphChart.cs
r10269 r10271 8 8 using HeuristicLab.Visualization; 9 9 10 namespace HeuristicLab.Evolution aryTracking.Views {10 namespace HeuristicLab.EvolutionTracking.Views { 11 11 public partial class GenealogyGraphChart : ChartControl { 12 12 private GenealogyGraph genealogyGraph; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.Designer.cs
r10269 r10271 1 1 2 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;3 2 4 namespace HeuristicLab.Evolution aryTracking.Views {3 namespace HeuristicLab.EvolutionTracking.Views { 5 4 partial class GenealogyGraphView { 6 5 /// <summary> … … 34 33 this.simpleLineagesCheckBox = new System.Windows.Forms.CheckBox(); 35 34 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 36 this.genealogyGraphChart = new HeuristicLab.Evolution aryTracking.Views.GenealogyGraphChart();35 this.genealogyGraphChart = new HeuristicLab.EvolutionTracking.Views.GenealogyGraphChart(); 37 36 this.topControlBox.SuspendLayout(); 38 37 this.graphControlsGroupBox.SuspendLayout(); … … 41 40 // topControlBox 42 41 // 43 this.topControlBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 42 this.topControlBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 44 43 | System.Windows.Forms.AnchorStyles.Right))); 45 44 this.topControlBox.Controls.Add(this.graphControlsGroupBox); … … 96 95 // genealogyGraphChart 97 96 // 98 this.genealogyGraphChart.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 97 this.genealogyGraphChart.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 99 98 | System.Windows.Forms.AnchorStyles.Right))); 100 99 this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.cs
r10269 r10271 26 26 using HeuristicLab.MainForm; 27 27 28 namespace HeuristicLab.Evolution aryTracking.Views {28 namespace HeuristicLab.EvolutionTracking.Views { 29 29 [View("GenealogyGraph")] 30 30 [Content(typeof(GenealogyGraph), IsDefaultView = true)] -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/VisualGenealogyGraphArc.cs
r10264 r10271 24 24 using HeuristicLab.Visualization; 25 25 26 namespace HeuristicLab.Evolution aryTracking.Views {26 namespace HeuristicLab.EvolutionTracking.Views { 27 27 public class VisualGenealogyGraphArc : Line { 28 28 public VisualGenealogyGraphNode Source; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/VisualGenealogyGraphNode.cs
r10269 r10271 25 25 using HeuristicLab.Visualization; 26 26 27 namespace HeuristicLab.Evolution aryTracking.Views {27 namespace HeuristicLab.EvolutionTracking.Views { 28 28 public class VisualGenealogyGraphNode : Ellipse { 29 29 public IGenealogyGraphNode Data { get; internal set; } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/VisualGenealogyGraphTextLabel.cs
r10264 r10271 3 3 using Rectangle = HeuristicLab.Visualization.Rectangle; 4 4 5 namespace HeuristicLab.Evolution aryTracking.Views {5 namespace HeuristicLab.EvolutionTracking.Views { 6 6 public class VisualGenealogyGraphTextLabel : Rectangle { 7 7 private string text; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Arc.cs
r10267 r10271 3 3 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 4 4 5 namespace HeuristicLab.Evolution aryTracking {5 namespace HeuristicLab.EvolutionTracking { 6 6 /// <summary> 7 7 /// An arc that can have a weight, a label, and can old additional information in the Data object -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/DirectedGraph.cs
r10267 r10271 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 29 30 namespace HeuristicLab.Evolution aryTracking {30 namespace HeuristicLab.EvolutionTracking { 31 31 [Item("", "")] 32 32 [StorableClass] -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Interfaces/IArc.cs
r10267 r10271 1 namespace HeuristicLab.Evolution aryTracking {1 namespace HeuristicLab.EvolutionTracking { 2 2 public interface IArc { 3 3 IVertex Source { get; set; } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Interfaces/IDirectedGraph.cs
r10267 r10271 24 24 using HeuristicLab.Core; 25 25 26 namespace HeuristicLab.Evolution aryTracking {26 namespace HeuristicLab.EvolutionTracking { 27 27 public interface IDirectedGraph : IItem { } 28 28 public interface IDirectedGraph<TVertex> : IDirectedGraph -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Interfaces/IVertex.cs
r10267 r10271 23 23 using HeuristicLab.Core; 24 24 25 namespace HeuristicLab.Evolution aryTracking {25 namespace HeuristicLab.EvolutionTracking { 26 26 public interface IVertex : IItem { 27 27 string Id { get; } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Vertex.cs
r10267 r10271 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 27 28 namespace HeuristicLab.Evolution aryTracking {28 namespace HeuristicLab.EvolutionTracking { 29 29 [StorableClass] 30 30 public class Vertex : Item, IVertex { -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/EvolutionTrackingOperators/EvolutionTrackingAfterCreationOperator.cs
r10267 r10271 3 3 using HeuristicLab.Core; 4 4 using HeuristicLab.Data; 5 using HeuristicLab. Operators;5 using HeuristicLab.EvolutionaryTracking; 6 6 using HeuristicLab.Optimization; 7 7 using HeuristicLab.Parameters; 8 8 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 9 9 10 namespace HeuristicLab.Evolution aryTracking {10 namespace HeuristicLab.EvolutionTracking { 11 11 [StorableClass] 12 12 [Item("EvolutionTrackingAfterCrossoverOperator", "An operator that performs additional operators after crossover")] 13 public sealed class EvolutionTrackingAfterCreationOperator : SingleSuccessorOperator {13 public sealed class EvolutionTrackingAfterCreationOperator : EvolutionTrackingOperator { 14 14 private const string ResultsParameterName = "Results"; 15 15 private const string PopulationGraphParameterName = "PopulationGraph"; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/EvolutionTrackingOperators/EvolutionTrackingAfterCrossoverOperator.cs
r10267 r10271 2 2 using HeuristicLab.Core; 3 3 using HeuristicLab.Data; 4 using HeuristicLab.Operators;5 4 using HeuristicLab.Optimization; 6 5 using HeuristicLab.Parameters; 7 6 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 8 7 9 namespace HeuristicLab.Evolution aryTracking {8 namespace HeuristicLab.EvolutionTracking { 10 9 [StorableClass] 11 10 [Item("EvolutionTrackingAfterCrossoverOperator", "An operator that performs additional operators after crossover")] 12 public sealed class EvolutionTrackingAfterCrossoverOperator : SingleSuccessorOperator {11 public sealed class EvolutionTrackingAfterCrossoverOperator : EvolutionTrackingOperator { 13 12 private const string ResultsParameterName = "Results"; 14 13 private const string PopulationGraphParameterName = "PopulationGraph"; -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/EvolutionTrackingOperators/EvolutionTrackingOperator.cs
r10267 r10271 3 3 using HeuristicLab.Operators; 4 4 5 namespace HeuristicLab.Evolution aryTracking.EvolutionTrackingOperators{5 namespace HeuristicLab.EvolutionTracking { 6 6 public class EvolutionTrackingOperator : SingleSuccessorOperator { 7 7 // evolution tracking-related parameters … … 10 10 private const string GenerationsParameterName = "Generations"; 11 11 12 public EvolutionTrackingOperator() { } 12 13 protected EvolutionTrackingOperator(EvolutionTrackingOperator original, Cloner cloner) 13 14 : base(original, cloner) { -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/GenealogyGraph.cs
r10267 r10271 6 6 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 7 7 8 namespace HeuristicLab.Evolution aryTracking {8 namespace HeuristicLab.EvolutionTracking { 9 9 [StorableClass] 10 10 [Item("GenealogyGraph", "A class representing a genealogy graph")] -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/GenealogyGraphArc.cs
r10267 r10271 4 4 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 5 5 6 namespace HeuristicLab.Evolution aryTracking {6 namespace HeuristicLab.EvolutionTracking { 7 7 [StorableClass] 8 8 [Item("GenealogyGraphArc", "A graph arc connecting two GenealogyGraphNodes and holding some data.")] -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/GenealogyGraphNode.cs
r10267 r10271 6 6 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 7 7 8 namespace HeuristicLab.Evolution aryTracking {8 namespace HeuristicLab.EvolutionTracking { 9 9 [StorableClass] 10 10 [Item("GenealogGraphNode", "A class representing a node in the GenealogyGraph")] -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraph.cs
r10267 r10271 1 1 using System.Collections.Generic; 2 2 3 namespace HeuristicLab.Evolution aryTracking {3 namespace HeuristicLab.EvolutionTracking { 4 4 public interface IGenealogyGraph<TVertex> : IDirectedGraph<TVertex> where TVertex : class, IGenealogyGraphNode { 5 5 Dictionary<double, LinkedList<TVertex>> Ranks { get; set; } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraphArc.cs
r10267 r10271 1 namespace HeuristicLab.Evolution aryTracking {1 namespace HeuristicLab.EvolutionTracking { 2 2 public interface IGenealogyGraphArc : IArc { 3 3 new IGenealogyGraphNode Source { get; set; } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraphNode.cs
r10267 r10271 2 2 using System.Collections.Generic; 3 3 4 namespace HeuristicLab.Evolution aryTracking {4 namespace HeuristicLab.EvolutionTracking { 5 5 public interface IGenealogyGraphNode : IVertex, IComparable<IGenealogyGraphNode> { 6 6 IEnumerable<IGenealogyGraphNode> Ancestors(); -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj
r10270 r10271 41 41 <DebugType>full</DebugType> 42 42 <Optimize>false</Optimize> 43 <OutputPath> $(SolutionDir)\bin\</OutputPath>43 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 44 44 <DefineConstants>DEBUG;TRACE</DefineConstants> 45 45 <ErrorReport>prompt</ErrorReport> … … 50 50 <DebugType>pdbonly</DebugType> 51 51 <Optimize>true</Optimize> 52 <OutputPath> $(SolutionDir)\bin\</OutputPath>52 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 53 53 <DefineConstants>TRACE</DefineConstants> 54 54 <ErrorReport>prompt</ErrorReport> … … 58 58 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> 59 59 <DebugSymbols>true</DebugSymbols> 60 <OutputPath> $(SolutionDir)\bin\</OutputPath>60 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 61 61 <DefineConstants>DEBUG;TRACE</DefineConstants> 62 62 <DebugType>full</DebugType> … … 66 66 </PropertyGroup> 67 67 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> 68 <OutputPath> $(SolutionDir)\bin\</OutputPath>68 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 69 69 <DefineConstants>TRACE</DefineConstants> 70 70 <Optimize>true</Optimize> … … 76 76 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 77 77 <DebugSymbols>true</DebugSymbols> 78 <OutputPath> $(SolutionDir)\bin\</OutputPath>78 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 79 79 <DefineConstants>DEBUG;TRACE</DefineConstants> 80 80 <DebugType>full</DebugType> … … 84 84 </PropertyGroup> 85 85 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 86 <OutputPath> $(SolutionDir)\bin\</OutputPath>86 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 87 87 <DefineConstants>TRACE</DefineConstants> 88 88 <Optimize>true</Optimize> … … 93 93 </PropertyGroup> 94 94 <ItemGroup> 95 <Reference Include="ALGLIB-3.7.0 , Version=3.7.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">96 <HintPath>..\..\ bin\ALGLIB-3.7.0.dll</HintPath>95 <Reference Include="ALGLIB-3.7.0"> 96 <HintPath>..\..\..\..\trunk\sources\bin\ALGLIB-3.7.0.dll</HintPath> 97 97 <Private>False</Private> 98 98 </Reference> 99 99 <Reference Include="EPPlus-3.1.3, Version=3.1.3.0, Culture=neutral, PublicKeyToken=ea159fdaa78159a1, processorArchitecture=MSIL"> 100 100 <SpecificVersion>False</SpecificVersion> 101 <HintPath>..\..\bin\EPPlus-3.1.3.dll</HintPath> 101 <HintPath>..\..\..\..\trunk\sources\bin\EPPlus-3.1.3.dll</HintPath> 102 <Private>False</Private> 103 </Reference> 104 <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 105 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath> 106 <Private>False</Private> 107 </Reference> 108 <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 109 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath> 110 <Private>False</Private> 111 </Reference> 112 <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 113 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath> 114 <Private>False</Private> 115 </Reference> 116 <Reference Include="HeuristicLab.Core.Views-3.3"> 117 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core.Views-3.3.dll</HintPath> 118 <Private>False</Private> 119 </Reference> 120 <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 121 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath> 122 <Private>False</Private> 123 </Reference> 124 <Reference Include="HeuristicLab.Data.Views-3.3"> 125 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data.Views-3.3.dll</HintPath> 126 <Private>False</Private> 127 </Reference> 128 <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 129 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath> 130 <Private>False</Private> 131 </Reference> 132 <Reference Include="HeuristicLab.MainForm-3.3"> 133 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.MainForm-3.3.dll</HintPath> 134 <Private>False</Private> 135 </Reference> 136 <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3"> 137 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath> 138 <Private>False</Private> 139 </Reference> 140 <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 141 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 142 <Private>False</Private> 143 </Reference> 144 <Reference Include="HeuristicLab.Optimization.Views-3.3"> 145 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization.Views-3.3.dll</HintPath> 102 146 <Private>False</Private> 103 147 </Reference> 104 148 <Reference Include="HeuristicLab.Optimizer-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 105 149 <SpecificVersion>False</SpecificVersion> 106 <HintPath>..\..\bin\HeuristicLab.Optimizer-3.3.dll</HintPath> 150 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimizer-3.3.dll</HintPath> 151 <Private>False</Private> 152 </Reference> 153 <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 154 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath> 155 <Private>False</Private> 156 </Reference> 157 <Reference Include="HeuristicLab.Parameters.Views-3.3"> 158 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters.Views-3.3.dll</HintPath> 159 <Private>False</Private> 160 </Reference> 161 <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 162 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath> 163 <Private>False</Private> 164 </Reference> 165 <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 166 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath> 167 <Private>False</Private> 168 </Reference> 169 <Reference Include="HeuristicLab.Visualization.ChartControlsExtensions-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 170 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Visualization.ChartControlsExtensions-3.3.dll</HintPath> 171 <Private>False</Private> 107 172 </Reference> 108 173 <Reference Include="System" /> … … 112 177 <Reference Include="System.Drawing" /> 113 178 <Reference Include="System.Windows.Forms" /> 179 <Reference Include="System.Windows.Forms.DataVisualization" /> 180 <Reference Include="System.Xml.Linq"> 181 <RequiredTargetFramework>3.5</RequiredTargetFramework> 182 </Reference> 183 <Reference Include="System.Data.DataSetExtensions"> 184 <RequiredTargetFramework>3.5</RequiredTargetFramework> 185 </Reference> 186 <Reference Include="System.Data" /> 187 <Reference Include="System.Xml" /> 114 188 </ItemGroup> 115 189 <ItemGroup> … … 121 195 <DependentUpon>InteractiveSymbolicExpressionTreeChart.cs</DependentUpon> 122 196 </Compile> 197 <Compile Include="LatexSymbolicDataAnalysisModelView.cs" /> 198 <Compile Include="LatexSymbolicDataAnalysisModelView.designer.cs"> 199 <DependentUpon>LatexSymbolicDataAnalysisModelView.cs</DependentUpon> 200 </Compile> 123 201 <Compile Include="MathSymbolicDataAnalysisModelView.cs"> 124 202 <SubType>UserControl</SubType> … … 129 207 <Compile Include="MenuItems\OptimizeDataAnalysisRunsMenuItem.cs" /> 130 208 <Compile Include="Plugin.cs" /> 209 <Compile Include="SlidingWindowDataView.cs"> 210 <SubType>UserControl</SubType> 211 </Compile> 212 <Compile Include="SlidingWindowDataView.Designer.cs"> 213 <DependentUpon>SlidingWindowDataView.cs</DependentUpon> 214 </Compile> 131 215 <Compile Include="TextualSymbolicDataAnalysisModelView.cs"> 132 216 <SubType>UserControl</SubType> … … 207 291 </ItemGroup> 208 292 <ItemGroup> 209 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 210 <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project> 211 <Name>HeuristicLab.Collections-3.3</Name> 212 <Private>False</Private> 213 </ProjectReference> 214 <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj"> 215 <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project> 216 <Name>HeuristicLab.Common-3.3</Name> 217 <Private>False</Private> 218 </ProjectReference> 219 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj"> 220 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project> 221 <Name>HeuristicLab.Core.Views-3.3</Name> 222 <Private>False</Private> 223 </ProjectReference> 224 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 225 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 226 <Name>HeuristicLab.Core-3.3</Name> 227 <Private>False</Private> 228 </ProjectReference> 229 <ProjectReference Include="..\..\HeuristicLab.Data.Views\3.3\HeuristicLab.Data.Views-3.3.csproj"> 230 <Project>{72104A0B-90E7-42F3-9ABE-9BBBADD4B943}</Project> 231 <Name>HeuristicLab.Data.Views-3.3</Name> 232 <Private>False</Private> 233 </ProjectReference> 234 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj"> 235 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 236 <Name>HeuristicLab.Data-3.3</Name> 237 <Private>False</Private> 238 </ProjectReference> 239 <ProjectReference Include="..\..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4.csproj"> 240 <Project>{423BD94F-963A-438E-BA45-3BB3D61CD03B}</Project> 293 <ProjectReference Include="..\..\..\HeuristicLab.EvolutionaryTracking\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4.csproj"> 294 <Project>{423bd94f-963a-438e-ba45-3bb3d61cd03b}</Project> 241 295 <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4</Name> 242 <Private>False</Private>243 </ProjectReference>244 <ProjectReference Include="..\..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj">245 <Project>{06D4A186-9319-48A0-BADE-A2058D462EEA}</Project>246 <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4</Name>247 <Private>False</Private>248 </ProjectReference>249 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.3\HeuristicLab.MainForm.WindowsForms-3.3.csproj">250 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project>251 <Name>HeuristicLab.MainForm.WindowsForms-3.3</Name>252 <Private>False</Private>253 </ProjectReference>254 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.3\HeuristicLab.MainForm-3.3.csproj">255 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project>256 <Name>HeuristicLab.MainForm-3.3</Name>257 <Private>False</Private>258 </ProjectReference>259 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">260 <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>261 <Name>HeuristicLab.Optimization-3.3</Name>262 <Private>False</Private>263 </ProjectReference>264 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">265 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>266 <Name>HeuristicLab.PluginInfrastructure-3.3</Name>267 296 <Private>False</Private> 268 297 </ProjectReference> 269 298 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj"> 270 <Project>{3 D28463F-EC96-4D82-AFEE-38BE91A0CA00}</Project>299 <Project>{3d28463f-ec96-4d82-afee-38be91a0ca00}</Project> 271 300 <Name>HeuristicLab.Problems.DataAnalysis.Symbolic-3.4</Name> 272 <Private>False</Private>273 </ProjectReference>274 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">275 <Project>{DF87C13E-A889-46FF-8153-66DCAA8C5674}</Project>276 <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>277 301 <Private>False</Private> 278 302 </ProjectReference> … … 323 347 </PreBuildEvent> 324 348 </PropertyGroup> 349 <PropertyGroup> 350 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 351 set ProjectDir=$(ProjectDir) 352 set SolutionDir=$(SolutionDir) 353 set Outdir=$(Outdir)</PreBuildEvent> 354 </PropertyGroup> 325 355 </Project> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Tracking.sln
r10269 r10271 22 22 EndProject 23 23 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.DataAnalysis.Symbolic-3.4", "HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj", "{3D28463F-EC96-4D82-AFEE-38BE91A0CA00}" 24 EndProject 25 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4", "HeuristicLab.Problems.DataAnalysis.Symbolic.Views\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj", "{7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}" 24 26 EndProject 25 27 Global … … 111 113 {3D28463F-EC96-4D82-AFEE-38BE91A0CA00}.Release|x86.ActiveCfg = Release|x86 112 114 {3D28463F-EC96-4D82-AFEE-38BE91A0CA00}.Release|x86.Build.0 = Release|x86 115 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 116 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|Any CPU.Build.0 = Debug|Any CPU 117 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 118 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|Mixed Platforms.Build.0 = Debug|x86 119 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|x64.ActiveCfg = Debug|x64 120 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|x64.Build.0 = Debug|x64 121 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|x86.ActiveCfg = Debug|x86 122 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Debug|x86.Build.0 = Debug|x86 123 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|Any CPU.ActiveCfg = Release|Any CPU 124 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|Any CPU.Build.0 = Release|Any CPU 125 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|Mixed Platforms.ActiveCfg = Release|x86 126 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|Mixed Platforms.Build.0 = Release|x86 127 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|x64.ActiveCfg = Release|x64 128 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|x64.Build.0 = Release|x64 129 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|x86.ActiveCfg = Release|x86 130 {7A2531CE-3F7C-4F13-BCCA-ED6DC27A7086}.Release|x86.Build.0 = Release|x86 113 131 EndGlobalSection 114 132 GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset
for help on using the changeset viewer.