Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 19:06:54 (7 years ago)
Author:
gkronber
Message:

#2520 fixed unit tests for new persistence: loading & storing all samples

Location:
branches/PersistenceReintegration/HeuristicLab.Analysis/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs

    r14927 r14929  
    3333  public class DataRowVisualProperties : DeepCloneable, INotifyPropertyChanged {
    3434    #region ChartType
     35    [StorableType("c43ebac6-acf0-40f7-9515-c032f73f6b3c")]
    3536    public enum DataRowChartType {
    3637      Line,
     
    4344    #endregion
    4445    #region LineStyle
     46    [StorableType("d006c5b0-a8f2-44ce-9cb7-6fb1f6ef7109")]
    4547    public enum DataRowLineStyle {
    4648      Dash,
     
    5355    #endregion
    5456    #region Histogram Aggregation
     57    [StorableType("7fd525d7-4126-4084-b811-ee36b9eddf45")]
    5558    public enum DataRowHistogramAggregation {
    5659      Overlapping,
  • branches/PersistenceReintegration/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlotDataRowVisualProperties.cs

    r14927 r14929  
    3333  public class ScatterPlotDataRowVisualProperties : DeepCloneable, INotifyPropertyChanged {
    3434    #region PointStyle
     35    [StorableType("a23fb4fd-7b9e-41c9-800b-85a7b3964937")]
    3536    public enum ScatterPlotDataRowPointStyle {
    3637      Circle,
     
    4647    #endregion
    4748    #region
     49    [StorableType("496715c3-1f4f-4c93-9b47-76a94324a069")]
    4850    public enum ScatterPlotDataRowRegressionType {
    4951      None,
  • branches/PersistenceReintegration/HeuristicLab.Analysis/3.3/Statistics/Fitting/IFitting.cs

    r14185 r14929  
    1 #region License Information
     1using HeuristicLab.Persistence;
     2#region License Information
    23/* HeuristicLab
    34 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2122
    2223namespace HeuristicLab.Analysis.Statistics {
     24  [StorableType("68007b6c-7899-4aa1-8778-0e5196acc500")]
    2325  public interface IFitting {
    2426    DataRow CalculateFittedLine(double[] dataPoints);
Note: See TracChangeset for help on using the changeset viewer.