- Timestamp:
- 07/02/09 13:17:14 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3
- Files:
-
- 6 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3/HeuristicLab.GP.StructureIdentification.TimeSeries-3.3.csproj
r1908 r2130 85 85 <Compile Include="HeuristicLabGPTimeSeriesPlugin.cs" /> 86 86 <Compile Include="OffspringSelectionGP.cs" /> 87 <Compile Include="OffspringSelectionGpEditor.cs">88 <SubType>UserControl</SubType>89 </Compile>90 <Compile Include="OffspringSelectionGpEditor.Designer.cs">91 <DependentUpon>OffspringSelectionGpEditor.cs</DependentUpon>92 </Compile>93 87 <Compile Include="ProfitEvaluator.cs" /> 94 88 <Compile Include="Properties\AssemblyInfo.cs" /> 95 89 <Compile Include="StandardGP.cs" /> 96 <Compile Include="StandardGpEditor.cs">97 <SubType>UserControl</SubType>98 </Compile>99 <Compile Include="StandardGpEditor.Designer.cs">100 <DependentUpon>StandardGpEditor.cs</DependentUpon>101 </Compile>102 90 <Compile Include="TheilInequalityCoefficientEvaluator.cs" /> 103 91 </ItemGroup> … … 148 136 <None Include="Properties\AssemblyInfo.frame" /> 149 137 </ItemGroup> 150 <ItemGroup>151 <EmbeddedResource Include="OffspringSelectionGpEditor.resx">152 <DependentUpon>OffspringSelectionGpEditor.cs</DependentUpon>153 </EmbeddedResource>154 <EmbeddedResource Include="StandardGpEditor.resx">155 <DependentUpon>StandardGpEditor.cs</DependentUpon>156 </EmbeddedResource>157 </ItemGroup>158 138 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 159 139 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3/OffspringSelectionGP.cs
r1857 r2130 35 35 namespace HeuristicLab.GP.StructureIdentification.TimeSeries { 36 36 public class OffspringSelectionGP : HeuristicLab.GP.StructureIdentification.OffspringSelectionGP, ITimeSeriesAlgorithm { 37 public virtual bool Autoregressive {38 get { return ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data; }39 set { ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data = value; }40 }41 42 37 protected override IOperator CreateFunctionLibraryInjector() { 43 38 return new FunctionLibraryInjector(); -
trunk/sources/HeuristicLab.GP.StructureIdentification.TimeSeries/3.3/StandardGP.cs
r1857 r2130 35 35 namespace HeuristicLab.GP.StructureIdentification.TimeSeries { 36 36 public class StandardGP : HeuristicLab.GP.StructureIdentification.StandardGP, ITimeSeriesAlgorithm { 37 public bool Autoregressive {38 get { return ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data; }39 set { ProblemInjector.GetVariable("Autoregressive").GetValue<BoolData>().Data = value; }40 }41 42 37 protected override IOperator CreateFunctionLibraryInjector() { 43 38 return new FunctionLibraryInjector();
Note: See TracChangeset
for help on using the changeset viewer.