Changeset 14317
- Timestamp:
- 09/30/16 12:35:22 (8 years ago)
- 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 2 2 Plugin.cs 3 3 *.user 4 .vs
-
- Property svn:ignore
-
branches/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction-3.3.csproj
r14310 r14317 119 119 <HintPath>..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath> 120 120 </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> 121 125 <Reference Include="HeuristicLab.Data-3.3"> 122 126 <HintPath>..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath> … … 125 129 <HintPath>..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath> 126 130 </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> 127 143 <Reference Include="HeuristicLab.Operators-3.3"> 128 144 <HintPath>..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath> … … 150 166 <SpecificVersion>False</SpecificVersion> 151 167 <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> 152 172 </Reference> 153 173 <Reference Include="HeuristicLab.Problems.Instances-3.3"> … … 164 184 <Reference Include="System.IO.Compression" /> 165 185 <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> 168 195 <Compile Include="CurvedChVariableSymbol.cs" /> 169 196 <Compile Include="CurvedChVariableTreeNode.cs" /> … … 207 234 <Install>true</Install> 208 235 </BootstrapperPackage> 236 </ItemGroup> 237 <ItemGroup> 238 <EmbeddedResource Include="RealGlucoseVariableView.resx"> 239 <DependentUpon>RealGlucoseVariableView.cs</DependentUpon> 240 </EmbeddedResource> 209 241 </ItemGroup> 210 242 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/HeuristicLab.Problems.GeneticProgramming.BloodGlucosePrediction/Solution.cs
r14313 r14317 67 67 } 68 68 69 public override IDeepCloneable Clone(Cloner cloner) { 70 return new Solution(this, cloner); 71 } 72 69 73 protected override void RecalculateResults() { 70 74 CalculateRegressionResults();
Note: See TracChangeset
for help on using the changeset viewer.