Changeset 17105 for stable/HeuristicLab.Analysis
- Timestamp:
- 07/08/19 00:23:12 (5 years ago)
- Location:
- stable
- Files:
-
- 1 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Analysis merged: 16584-16585,16625,16658,16796
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r17097 r17105 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 -
stable/HeuristicLab.Analysis/3.3/DataVisualization/IndexedDataRow.cs
r17097 r17105 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); } -
stable/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs
r17097 r17105 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; } -
stable/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlotDataRowVisualProperties.cs
r17097 r17105 33 33 public class ScatterPlotDataRowVisualProperties : DeepCloneable, INotifyPropertyChanged { 34 34 #region PointStyle 35 [StorableType("45ED097C-3523-46B7-8D04-DA193833A899")] 35 36 public enum ScatterPlotDataRowPointStyle { 36 37 Circle, … … 46 47 #endregion 47 48 #region 49 [StorableType("4EFF1DC9-C74C-474C-81E4-0AF8E336438E")] 48 50 public enum ScatterPlotDataRowRegressionType { 49 51 None, -
stable/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj
r17097 r17105 109 109 <Private>False</Private> 110 110 </Reference> 111 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">112 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>113 </Reference>114 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">115 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre02\lib\net461\HEAL.Attic.dll</HintPath>116 </Reference>117 111 <Reference Include="System" /> 118 112 <Reference Include="System.Core"> … … 120 114 </Reference> 121 115 <Reference Include="System.Drawing" /> 122 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">123 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath>124 </Reference>125 116 <Reference Include="System.Xml.Linq"> 126 117 <RequiredTargetFramework>3.5</RequiredTargetFramework> … … 133 124 </ItemGroup> 134 125 <ItemGroup> 135 <None Include="packages.config" />136 126 <None Include="Plugin.cs.frame" /> 137 127 <Compile Include="AlleleFrequencyAnalysis\Allele.cs" /> … … 271 261 </BootstrapperPackage> 272 262 </ItemGroup> 273 <ItemGroup /> 263 <ItemGroup> 264 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 265 <SpecificVersion>False</SpecificVersion> 266 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 267 <Private>False</Private> 268 </Reference> 269 </ItemGroup> 274 270 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 275 271 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
stable/HeuristicLab.Analysis/3.3/Plugin.cs.frame
r17097 r17105 38 38 [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")] 39 39 [PluginDependency("HeuristicLab.Parameters", "3.3")] 40 [PluginDependency("HeuristicLab. Persistence", "3.3")]40 [PluginDependency("HeuristicLab.Attic", "1.0")] 41 41 public class HeuristicLabAnalysisPlugin : PluginBase { 42 42 } -
stable/HeuristicLab.Analysis/3.3/PopulationSimilarityAnalysis/PopulationSimilarityAnalyzer.cs
r17097 r17105 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.