Changeset 17839
- Timestamp:
- 02/16/21 17:22:47 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GAM/Spline1dModel.cs
r17815 r17839 53 53 } 54 54 public Spline1dModel(alglib.spline1d.spline1dinterpolant interpolant, string targetVar, string inputVar) 55 : base("Spline model (1d)", "Spline model (1d)") { 56 this.interpolant = (alglib.spline1d.spline1dinterpolant)interpolant.make_copy(); 57 this.TargetVariable = targetVar; 55 : base(targetVar, "Spline model (1d)") { 56 this.interpolant = (alglib.spline1d.spline1dinterpolant)interpolant.make_copy(); 58 57 this.variablesUsedForPrediction = new string[] { inputVar }; 59 58 }
Note: See TracChangeset
for help on using the changeset viewer.