Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14317


Ignore:
Timestamp:
09/30/16 12:35:22 (7 years ago)
Author:
gkronber
Message:

view for editing time lags for the real glucose value.
clone override

Location:
branches/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction

    • Property svn:ignore
      •  

        old new  
        22Plugin.cs
        33*.user
         4.vs
  • branches/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction-3.3.csproj

    r14310 r14317  
    119119      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
    120120    </Reference>
     121    <Reference Include="HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     122      <SpecificVersion>False</SpecificVersion>
     123      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Core.Views-3.3.dll</HintPath>
     124    </Reference>
    121125    <Reference Include="HeuristicLab.Data-3.3">
    122126      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
     
    125129      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>
    126130    </Reference>
     131    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     132      <SpecificVersion>False</SpecificVersion>
     133      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4.dll</HintPath>
     134    </Reference>
     135    <Reference Include="HeuristicLab.MainForm-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     136      <SpecificVersion>False</SpecificVersion>
     137      <HintPath>..\..\trunk\sources\bin\HeuristicLab.MainForm-3.3.dll</HintPath>
     138    </Reference>
     139    <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     140      <SpecificVersion>False</SpecificVersion>
     141      <HintPath>..\..\trunk\sources\bin\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>
     142    </Reference>
    127143    <Reference Include="HeuristicLab.Operators-3.3">
    128144      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
     
    150166      <SpecificVersion>False</SpecificVersion>
    151167      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis.Symbolic.Regression-3.4.dll</HintPath>
     168    </Reference>
     169    <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     170      <SpecificVersion>False</SpecificVersion>
     171      <HintPath>..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.dll</HintPath>
    152172    </Reference>
    153173    <Reference Include="HeuristicLab.Problems.Instances-3.3">
     
    164184    <Reference Include="System.IO.Compression" />
    165185    <Reference Include="System.IO.Compression.FileSystem" />
    166   </ItemGroup>
    167   <ItemGroup>
     186    <Reference Include="System.Windows.Forms" />
     187  </ItemGroup>
     188  <ItemGroup>
     189    <Compile Include="RealGlucoseVariableView.cs">
     190      <SubType>UserControl</SubType>
     191    </Compile>
     192    <Compile Include="RealGlucoseVariableView.designer.cs">
     193      <DependentUpon>RealGlucoseVariableView.cs</DependentUpon>
     194    </Compile>
    168195    <Compile Include="CurvedChVariableSymbol.cs" />
    169196    <Compile Include="CurvedChVariableTreeNode.cs" />
     
    207234      <Install>true</Install>
    208235    </BootstrapperPackage>
     236  </ItemGroup>
     237  <ItemGroup>
     238    <EmbeddedResource Include="RealGlucoseVariableView.resx">
     239      <DependentUpon>RealGlucoseVariableView.cs</DependentUpon>
     240    </EmbeddedResource>
    209241  </ItemGroup>
    210242  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction/Solution.cs

    r14313 r14317  
    6767    }
    6868
     69    public override IDeepCloneable Clone(Cloner cloner) {
     70      return new Solution(this, cloner);
     71    }
     72
    6973    protected override void RecalculateResults() {
    7074      CalculateRegressionResults();
Note: See TracChangeset for help on using the changeset viewer.