Changeset 16796 for trunk/HeuristicLab.Problems.DataAnalysis
- Timestamp:
- 04/16/19 23:12:05 (6 years ago)
- Location:
- trunk/HeuristicLab.Problems.DataAnalysis/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r16565 r16796 133 133 #region Backwards compatible code, remove with 3.5 134 134 private double[,] storableData; 135 //name alias used to supp port backwards compatibility136 [Storable( Name = "data", AllowOneWay = true)]135 //name alias used to support backwards compatibility 136 [Storable(OldName = "data")] 137 137 private double[,] StorableData { set { storableData = value; } } 138 138 -
trunk/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Regression/RegressionEnsembleModel.cs
r16565 r16796 73 73 74 74 #region backwards compatiblity 3.3.5 75 [Storable( Name = "models", AllowOneWay = true)]75 [Storable(OldName = "models")] 76 76 private List<IRegressionModel> OldStorableModels { 77 77 set { models = value; }
Note: See TracChangeset
for help on using the changeset viewer.