- Timestamp:
- 04/19/19 09:09:45 (6 years ago)
- Location:
- branches/2994-AutoDiffForIntervals
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2994-AutoDiffForIntervals
- Property svn:mergeinfo changed
/trunk merged: 16740,16743,16757-16758,16762-16764,16768-16769,16779,16782-16784,16788,16792,16794-16799,16802,16819-16822
- Property svn:mergeinfo changed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Analysis (added) merged: 16796
- Property svn:mergeinfo changed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r16565 r16829 227 227 internal DataRowHistogramAggregation? Aggregation { get; private set; } 228 228 229 [Storable( Name = "Bins", AllowOneWay = true)]229 [Storable(OldName = "Bins")] 230 230 private int StorableBins { set { Bins = value; } } 231 [Storable( Name = "ExactBins", AllowOneWay = true)]231 [Storable(OldName = "ExactBins")] 232 232 private bool StorableExactBins { set { ExactBins = value; } } 233 [Storable( Name = "Aggregation", AllowOneWay = true)]233 [Storable(OldName = "Aggregation")] 234 234 private DataRowHistogramAggregation StorableAggregation { set { Aggregation = value; } } 235 235 #endregion -
branches/2994-AutoDiffForIntervals/HeuristicLab.Analysis/3.3/DataVisualization/IndexedDataRow.cs
r16565 r16829 61 61 #region Backwards compatible code, remove with 3.4 62 62 // tuples are stored inefficiently 63 [Storable( Name = "values", AllowOneWay = true)]63 [Storable(OldName = "values")] 64 64 private IEnumerable<Tuple<T, double>> StorableValues { 65 65 set { values = new ObservableList<Tuple<T, double>>(value); } -
branches/2994-AutoDiffForIntervals/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs
r16565 r16829 107 107 #region Backwards compatible code, remove with 3.4 108 108 private ObservableList<PointF> points; 109 [Storable( Name = "points", AllowOneWay = true)]109 [Storable(OldName = "points")] 110 110 private ObservableList<PointF> StorablePoints { 111 111 set { points = value; } 112 112 } 113 113 private string xAxisName; 114 [Storable( Name = "xAxisName", AllowOneWay = true)]114 [Storable(OldName = "xAxisName")] 115 115 private string StorableXAxisName { 116 116 set { xAxisName = value; } 117 117 } 118 118 private string yAxisName; 119 [Storable( Name = "yAxisName", AllowOneWay = true)]119 [Storable(OldName = "yAxisName")] 120 120 private string StorableYAxisName { 121 121 set { yAxisName = value; } -
branches/2994-AutoDiffForIntervals/HeuristicLab.Analysis/3.3/PopulationSimilarityAnalysis/PopulationSimilarityAnalyzer.cs
r16565 r16829 44 44 #region Backwards compatible code, remove with 3.4 45 45 private ISolutionSimilarityCalculator oldSimilarityCalculator; 46 [Storable( AllowOneWay = true,Name = "SimilarityCalculator")]46 [Storable(OldName = "SimilarityCalculator")] 47 47 [Obsolete] 48 48 private ISolutionSimilarityCalculator SimilarityCalculator { set { oldSimilarityCalculator = value; } }
Note: See TracChangeset
for help on using the changeset viewer.