- Timestamp:
- 03/28/19 17:18:28 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork/NeuralNetworkEnsembleModel.cs
r16723 r16724 183 183 } 184 184 } 185 [Storable (AllowOneWay = true)]185 [Storable] 186 186 private double[] MultiLayerPerceptronEnsembleDfdnet { 187 187 set { … … 197 197 } 198 198 } 199 [Storable (AllowOneWay = true)]199 [Storable] 200 200 private double[] MultiLayerPerceptronEnsembleNeurons { 201 201 set { mlpEnsemble.innerobj.network.neurons = value; } 202 202 } 203 [Storable (AllowOneWay = true)]203 [Storable] 204 204 private double[] MultiLayerPerceptronEnsembleSerializedMlp { 205 205 set { … … 207 207 } 208 208 } 209 [Storable (AllowOneWay = true)]209 [Storable] 210 210 private int[] MultiLayerPerceptronStuctinfo { 211 211 set { -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r16723 r16724 227 227 internal DataRowHistogramAggregation? Aggregation { get; private set; } 228 228 229 [Storable(Name = "Bins" , AllowOneWay = true)]229 [Storable(Name = "Bins")] 230 230 private int StorableBins { set { Bins = value; } } 231 [Storable(Name = "ExactBins" , AllowOneWay = true)]231 [Storable(Name = "ExactBins")] 232 232 private bool StorableExactBins { set { ExactBins = value; } } 233 [Storable(Name = "Aggregation" , AllowOneWay = true)]233 [Storable(Name = "Aggregation")] 234 234 private DataRowHistogramAggregation StorableAggregation { set { Aggregation = value; } } 235 235 #endregion -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/DataVisualization/IndexedDataRow.cs
r16723 r16724 61 61 #region Backwards compatible code, remove with 3.4 62 62 // tuples are stored inefficiently 63 [Storable(Name = "values" , AllowOneWay = true)]63 [Storable(Name = "values")] 64 64 private IEnumerable<Tuple<T, double>> StorableValues { 65 65 set { values = new ObservableList<Tuple<T, double>>(value); } -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs
r16723 r16724 107 107 #region Backwards compatible code, remove with 3.4 108 108 private ObservableList<PointF> points; 109 [Storable(Name = "points" , AllowOneWay = true)]109 [Storable(Name = "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(Name = "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(Name = "yAxisName")] 120 120 private string StorableYAxisName { 121 121 set { yAxisName = value; } -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/PopulationSimilarityAnalysis/PopulationSimilarityAnalyzer.cs
r16723 r16724 44 44 #region Backwards compatible code, remove with 3.4 45 45 private ISolutionSimilarityCalculator oldSimilarityCalculator; 46 [Storable (AllowOneWay = true, Name = "SimilarityCalculator")]46 [Storable] 47 47 [Obsolete] 48 48 private ISolutionSimilarityCalculator SimilarityCalculator { set { oldSimilarityCalculator = value; } } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/CombinedSolution.cs
r13376 r16724 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Optimization { 29 29 [Item("CombinedSolution", "A solution that consists of other solutions.")] 30 [Storable Class]30 [StorableType("B5ED00CB-E533-4ED6-AB2D-95BF7A654AAD")] 31 31 public sealed class CombinedSolution : Item, ISolution { 32 32 … … 35 35 36 36 [StorableConstructor] 37 private CombinedSolution( bool deserializing) : base(deserializing) { }37 private CombinedSolution(StorableConstructorFlag _) : base(_) { } 38 38 private CombinedSolution(CombinedSolution original, Cloner cloner) 39 39 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Operators/MultiEncodingOperator.cs
r16723 r16724 39 39 } 40 40 41 encoding.OperatorsChanged += Encoding_OperatorsChanged;42 41 [StorableConstructor] 43 42 protected MultiEncodingOperator(StorableConstructorFlag _) : base(_) { } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/MetaOptimizers/BatchRun.cs
r16723 r16724 112 112 // BackwardsCompatibility3.3 113 113 #region Backwards compatible code (remove with 3.4) 114 [Storable( AllowOneWay = true)]114 [Storable(Name ="algorithm")] 115 115 private IAlgorithm algorithm { 116 116 set { optimizer = value; } -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Problems/Problem.cs
r16723 r16724 84 84 // BackwardsCompatibility3.3 85 85 #region Backwards compatible code, remove with 3.4 86 [Storable(Name = "Operators" , AllowOneWay = true)]86 [Storable(Name = "Operators")] 87 87 private IEnumerable<IOperator> StorableOperators { 88 88 set { -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/RunCollection.cs
r16723 r16724 125 125 // BackwardsCompatibility3.3 126 126 #region Backwards compatible code, remove with 3.4 127 [Storable (AllowOneWay = true)]127 [Storable] 128 128 private string AlgorithmName { 129 129 set { optimizerName = value; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r16723 r16724 134 134 private double[,] storableData; 135 135 //name alias used to suppport backwards compatibility 136 [Storable(Name = "data" , AllowOneWay = true)]136 [Storable(Name = "data")] 137 137 private double[,] StorableData { set { storableData = value; } } 138 138 -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Regression/RegressionEnsembleModel.cs
r16723 r16724 73 73 74 74 #region backwards compatiblity 3.3.5 75 [Storable(Name = "models" , AllowOneWay = true)]75 [Storable(Name = "models")] 76 76 private List<IRegressionModel> OldStorableModels { 77 77 set { models = value; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs
r16723 r16724 175 175 } 176 176 177 [Storable(Name = "operators" , AllowOneWay = true)]177 [Storable(Name = "operators")] 178 178 private List<IOperator> StorableOperators { 179 179 set { Operators.AddRange(value); }
Note: See TracChangeset
for help on using the changeset viewer.