Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10271


Ignore:
Timestamp:
12/23/13 14:26:04 (10 years ago)
Author:
bburlacu
Message:

#1772: Fixed namespaces.

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.EvolutionaryTracking.Views {
     1namespace HeuristicLab.EvolutionTracking.Views {
    22  partial class GenealogyGraphChart {
    33    /// <summary>
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphChart.cs

    r10269 r10271  
    88using HeuristicLab.Visualization;
    99
    10 namespace HeuristicLab.EvolutionaryTracking.Views {
     10namespace HeuristicLab.EvolutionTracking.Views {
    1111  public partial class GenealogyGraphChart : ChartControl {
    1212    private GenealogyGraph genealogyGraph;
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.Designer.cs

    r10269 r10271  
    11
    2 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
    32
    4 namespace HeuristicLab.EvolutionaryTracking.Views {
     3namespace HeuristicLab.EvolutionTracking.Views {
    54  partial class GenealogyGraphView {
    65    /// <summary>
     
    3433      this.simpleLineagesCheckBox = new System.Windows.Forms.CheckBox();
    3534      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    36       this.genealogyGraphChart = new HeuristicLab.EvolutionaryTracking.Views.GenealogyGraphChart();
     35      this.genealogyGraphChart = new HeuristicLab.EvolutionTracking.Views.GenealogyGraphChart();
    3736      this.topControlBox.SuspendLayout();
    3837      this.graphControlsGroupBox.SuspendLayout();
     
    4140      // topControlBox
    4241      //
    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)
    4443            | System.Windows.Forms.AnchorStyles.Right)));
    4544      this.topControlBox.Controls.Add(this.graphControlsGroupBox);
     
    9695      // genealogyGraphChart
    9796      //
    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)
    9998            | System.Windows.Forms.AnchorStyles.Right)));
    10099      this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control;
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.cs

    r10269 r10271  
    2626using HeuristicLab.MainForm;
    2727
    28 namespace HeuristicLab.EvolutionaryTracking.Views {
     28namespace HeuristicLab.EvolutionTracking.Views {
    2929  [View("GenealogyGraph")]
    3030  [Content(typeof(GenealogyGraph), IsDefaultView = true)]
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/VisualGenealogyGraphArc.cs

    r10264 r10271  
    2424using HeuristicLab.Visualization;
    2525
    26 namespace HeuristicLab.EvolutionaryTracking.Views {
     26namespace HeuristicLab.EvolutionTracking.Views {
    2727  public class VisualGenealogyGraphArc : Line {
    2828    public VisualGenealogyGraphNode Source;
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/VisualGenealogyGraphNode.cs

    r10269 r10271  
    2525using HeuristicLab.Visualization;
    2626
    27 namespace HeuristicLab.EvolutionaryTracking.Views {
     27namespace HeuristicLab.EvolutionTracking.Views {
    2828  public class VisualGenealogyGraphNode : Ellipse {
    2929    public IGenealogyGraphNode Data { get; internal set; }
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/VisualGenealogyGraphTextLabel.cs

    r10264 r10271  
    33using Rectangle = HeuristicLab.Visualization.Rectangle;
    44
    5 namespace HeuristicLab.EvolutionaryTracking.Views {
     5namespace HeuristicLab.EvolutionTracking.Views {
    66  public class VisualGenealogyGraphTextLabel : Rectangle {
    77    private string text;
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Arc.cs

    r10267 r10271  
    33using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    44
    5 namespace HeuristicLab.EvolutionaryTracking {
     5namespace HeuristicLab.EvolutionTracking {
    66  /// <summary>
    77  /// 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  
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2929
    30 namespace HeuristicLab.EvolutionaryTracking {
     30namespace HeuristicLab.EvolutionTracking {
    3131  [Item("", "")]
    3232  [StorableClass]
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Interfaces/IArc.cs

    r10267 r10271  
    1 namespace HeuristicLab.EvolutionaryTracking {
     1namespace HeuristicLab.EvolutionTracking {
    22  public interface IArc {
    33    IVertex Source { get; set; }
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Interfaces/IDirectedGraph.cs

    r10267 r10271  
    2424using HeuristicLab.Core;
    2525
    26 namespace HeuristicLab.EvolutionaryTracking {
     26namespace HeuristicLab.EvolutionTracking {
    2727  public interface IDirectedGraph : IItem { }
    2828  public interface IDirectedGraph<TVertex> : IDirectedGraph
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Interfaces/IVertex.cs

    r10267 r10271  
    2323using HeuristicLab.Core;
    2424
    25 namespace HeuristicLab.EvolutionaryTracking {
     25namespace HeuristicLab.EvolutionTracking {
    2626  public interface IVertex : IItem {
    2727    string Id { get; }
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/DirectedGraph/Vertex.cs

    r10267 r10271  
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2727
    28 namespace HeuristicLab.EvolutionaryTracking {
     28namespace HeuristicLab.EvolutionTracking {
    2929  [StorableClass]
    3030  public class Vertex : Item, IVertex {
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/EvolutionTrackingOperators/EvolutionTrackingAfterCreationOperator.cs

    r10267 r10271  
    33using HeuristicLab.Core;
    44using HeuristicLab.Data;
    5 using HeuristicLab.Operators;
     5using HeuristicLab.EvolutionaryTracking;
    66using HeuristicLab.Optimization;
    77using HeuristicLab.Parameters;
    88using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    99
    10 namespace HeuristicLab.EvolutionaryTracking {
     10namespace HeuristicLab.EvolutionTracking {
    1111  [StorableClass]
    1212  [Item("EvolutionTrackingAfterCrossoverOperator", "An operator that performs additional operators after crossover")]
    13   public sealed class EvolutionTrackingAfterCreationOperator : SingleSuccessorOperator {
     13  public sealed class EvolutionTrackingAfterCreationOperator : EvolutionTrackingOperator {
    1414    private const string ResultsParameterName = "Results";
    1515    private const string PopulationGraphParameterName = "PopulationGraph";
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/EvolutionTrackingOperators/EvolutionTrackingAfterCrossoverOperator.cs

    r10267 r10271  
    22using HeuristicLab.Core;
    33using HeuristicLab.Data;
    4 using HeuristicLab.Operators;
    54using HeuristicLab.Optimization;
    65using HeuristicLab.Parameters;
    76using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    87
    9 namespace HeuristicLab.EvolutionaryTracking {
     8namespace HeuristicLab.EvolutionTracking {
    109  [StorableClass]
    1110  [Item("EvolutionTrackingAfterCrossoverOperator", "An operator that performs additional operators after crossover")]
    12   public sealed class EvolutionTrackingAfterCrossoverOperator : SingleSuccessorOperator {
     11  public sealed class EvolutionTrackingAfterCrossoverOperator : EvolutionTrackingOperator {
    1312    private const string ResultsParameterName = "Results";
    1413    private const string PopulationGraphParameterName = "PopulationGraph";
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/EvolutionTrackingOperators/EvolutionTrackingOperator.cs

    r10267 r10271  
    33using HeuristicLab.Operators;
    44
    5 namespace HeuristicLab.EvolutionaryTracking.EvolutionTrackingOperators {
     5namespace HeuristicLab.EvolutionTracking {
    66  public class EvolutionTrackingOperator : SingleSuccessorOperator {
    77    // evolution tracking-related parameters
     
    1010    private const string GenerationsParameterName = "Generations";
    1111
     12    public EvolutionTrackingOperator() { }
    1213    protected EvolutionTrackingOperator(EvolutionTrackingOperator original, Cloner cloner)
    1314      : base(original, cloner) {
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/GenealogyGraph.cs

    r10267 r10271  
    66using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    77
    8 namespace HeuristicLab.EvolutionaryTracking {
     8namespace HeuristicLab.EvolutionTracking {
    99  [StorableClass]
    1010  [Item("GenealogyGraph", "A class representing a genealogy graph")]
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/GenealogyGraphArc.cs

    r10267 r10271  
    44using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    55
    6 namespace HeuristicLab.EvolutionaryTracking {
     6namespace HeuristicLab.EvolutionTracking {
    77  [StorableClass]
    88  [Item("GenealogyGraphArc", "A graph arc connecting two GenealogyGraphNodes and holding some data.")]
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/GenealogyGraphNode.cs

    r10267 r10271  
    66using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    77
    8 namespace HeuristicLab.EvolutionaryTracking {
     8namespace HeuristicLab.EvolutionTracking {
    99  [StorableClass]
    1010  [Item("GenealogGraphNode", "A class representing a node in the GenealogyGraph")]
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraph.cs

    r10267 r10271  
    11using System.Collections.Generic;
    22
    3 namespace HeuristicLab.EvolutionaryTracking {
     3namespace HeuristicLab.EvolutionTracking {
    44  public interface IGenealogyGraph<TVertex> : IDirectedGraph<TVertex> where TVertex : class, IGenealogyGraphNode {
    55    Dictionary<double, LinkedList<TVertex>> Ranks { get; set; }
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraphArc.cs

    r10267 r10271  
    1 namespace HeuristicLab.EvolutionaryTracking {
     1namespace HeuristicLab.EvolutionTracking {
    22  public interface IGenealogyGraphArc : IArc {
    33    new IGenealogyGraphNode Source { get; set; }
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraphNode.cs

    r10267 r10271  
    22using System.Collections.Generic;
    33
    4 namespace HeuristicLab.EvolutionaryTracking {
     4namespace HeuristicLab.EvolutionTracking {
    55  public interface IGenealogyGraphNode : IVertex, IComparable<IGenealogyGraphNode> {
    66    IEnumerable<IGenealogyGraphNode> Ancestors();
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj

    r10270 r10271  
    4141    <DebugType>full</DebugType>
    4242    <Optimize>false</Optimize>
    43     <OutputPath>$(SolutionDir)\bin\</OutputPath>
     43    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
    4444    <DefineConstants>DEBUG;TRACE</DefineConstants>
    4545    <ErrorReport>prompt</ErrorReport>
     
    5050    <DebugType>pdbonly</DebugType>
    5151    <Optimize>true</Optimize>
    52     <OutputPath>$(SolutionDir)\bin\</OutputPath>
     52    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
    5353    <DefineConstants>TRACE</DefineConstants>
    5454    <ErrorReport>prompt</ErrorReport>
     
    5858  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
    5959    <DebugSymbols>true</DebugSymbols>
    60     <OutputPath>$(SolutionDir)\bin\</OutputPath>
     60    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
    6161    <DefineConstants>DEBUG;TRACE</DefineConstants>
    6262    <DebugType>full</DebugType>
     
    6666  </PropertyGroup>
    6767  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
    68     <OutputPath>$(SolutionDir)\bin\</OutputPath>
     68    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
    6969    <DefineConstants>TRACE</DefineConstants>
    7070    <Optimize>true</Optimize>
     
    7676  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    7777    <DebugSymbols>true</DebugSymbols>
    78     <OutputPath>$(SolutionDir)\bin\</OutputPath>
     78    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
    7979    <DefineConstants>DEBUG;TRACE</DefineConstants>
    8080    <DebugType>full</DebugType>
     
    8484  </PropertyGroup>
    8585  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    86     <OutputPath>$(SolutionDir)\bin\</OutputPath>
     86    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
    8787    <DefineConstants>TRACE</DefineConstants>
    8888    <Optimize>true</Optimize>
     
    9393  </PropertyGroup>
    9494  <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>
    9797      <Private>False</Private>
    9898    </Reference>
    9999    <Reference Include="EPPlus-3.1.3, Version=3.1.3.0, Culture=neutral, PublicKeyToken=ea159fdaa78159a1, processorArchitecture=MSIL">
    100100      <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>
    102146      <Private>False</Private>
    103147    </Reference>
    104148    <Reference Include="HeuristicLab.Optimizer-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    105149      <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>
    107172    </Reference>
    108173    <Reference Include="System" />
     
    112177    <Reference Include="System.Drawing" />
    113178    <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" />
    114188  </ItemGroup>
    115189  <ItemGroup>
     
    121195      <DependentUpon>InteractiveSymbolicExpressionTreeChart.cs</DependentUpon>
    122196    </Compile>
     197    <Compile Include="LatexSymbolicDataAnalysisModelView.cs" />
     198    <Compile Include="LatexSymbolicDataAnalysisModelView.designer.cs">
     199      <DependentUpon>LatexSymbolicDataAnalysisModelView.cs</DependentUpon>
     200    </Compile>
    123201    <Compile Include="MathSymbolicDataAnalysisModelView.cs">
    124202      <SubType>UserControl</SubType>
     
    129207    <Compile Include="MenuItems\OptimizeDataAnalysisRunsMenuItem.cs" />
    130208    <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>
    131215    <Compile Include="TextualSymbolicDataAnalysisModelView.cs">
    132216      <SubType>UserControl</SubType>
     
    207291  </ItemGroup>
    208292  <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>
    241295      <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>
    267296      <Private>False</Private>
    268297    </ProjectReference>
    269298    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj">
    270       <Project>{3D28463F-EC96-4D82-AFEE-38BE91A0CA00}</Project>
     299      <Project>{3d28463f-ec96-4d82-afee-38be91a0ca00}</Project>
    271300      <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>
    277301      <Private>False</Private>
    278302    </ProjectReference>
     
    323347</PreBuildEvent>
    324348  </PropertyGroup>
     349  <PropertyGroup>
     350    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     351set ProjectDir=$(ProjectDir)
     352set SolutionDir=$(SolutionDir)
     353set Outdir=$(Outdir)</PreBuildEvent>
     354  </PropertyGroup>
    325355</Project>
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Tracking.sln

    r10269 r10271  
    2222EndProject
    2323Project("{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}"
     24EndProject
     25Project("{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}"
    2426EndProject
    2527Global
     
    111113    {3D28463F-EC96-4D82-AFEE-38BE91A0CA00}.Release|x86.ActiveCfg = Release|x86
    112114    {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
    113131  EndGlobalSection
    114132  GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset for help on using the changeset viewer.