Changeset 2363 for trunk/sources/HeuristicLab.LinearRegression
- Timestamp:
- 09/16/09 13:13:52 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.LinearRegression/3.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.LinearRegression/3.2/LinearClassification.cs
r2356 r2363 54 54 } 55 55 56 protected internal virtualIAnalyzerModel CreateLRModel(IScope bestModelScope) {56 protected override IAnalyzerModel CreateLRModel(IScope bestModelScope) { 57 57 var model = new AnalyzerModel(); 58 58 DefaultClassificationOperators.PopulateAnalyzerModel(bestModelScope, model); -
trunk/sources/HeuristicLab.LinearRegression/3.2/LinearRegression.cs
r2360 r2363 60 60 get { 61 61 IOperator main = GetMainOperator(); 62 return main.SubOperators[2]; 62 CombinedOperator probInjector = (CombinedOperator)main.SubOperators[2]; 63 return probInjector.OperatorGraph.InitialOperator.SubOperators[0]; 63 64 } 64 65 set { 65 66 IOperator main = GetMainOperator(); 66 main.RemoveSubOperator(2); 67 main.AddSubOperator(value, 2); 67 CombinedOperator probInjector = (CombinedOperator)main.SubOperators[2]; 68 probInjector.OperatorGraph.InitialOperator.RemoveSubOperator(0); 69 probInjector.OperatorGraph.InitialOperator.AddSubOperator(value, 0); 68 70 } 69 71 } -
trunk/sources/HeuristicLab.LinearRegression/3.2/LinearTimeSeriesPrognosis.cs
r2360 r2363 73 73 } 74 74 75 protected internal virtualIAnalyzerModel CreateLRModel(IScope bestModelScope) {75 protected override IAnalyzerModel CreateLRModel(IScope bestModelScope) { 76 76 var model = new AnalyzerModel(); 77 77 DefaultTimeSeriesOperators.PopulateAnalyzerModel(bestModelScope, model);
Note: See TracChangeset
for help on using the changeset viewer.