Changeset 2515


Ignore:
Timestamp:
Jul 11, 2011, 4:36:49 AM (12 years ago)
Author:
Peter
Message:

avoid inline

Location:
trunk/yat/statistics
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/statistics/KolmogorovSmirnov.cc

    r2119 r2515  
    4040namespace yat {
    4141namespace statistics {
     42
     43
     44  KolmogorovSmirnov::Element::Element(void)
     45  {}
     46
     47
     48  KolmogorovSmirnov::Element::Element(double x, bool class_label, double w)
     49    : value(x), label(class_label), weight(w)
     50  {}
    4251
    4352
  • trunk/yat/statistics/KolmogorovSmirnov.h

    r2202 r2515  
    5353         \brief default constructor
    5454      */
    55       inline Element(void) {};
     55      Element(void);
    5656
    5757      /**
    5858         \brief Constructor
    5959       */
    60       inline Element(double x, bool class_label, double w=1.0)
    61         : value(x), label(class_label), weight(w) {};
     60      Element(double x, bool class_label, double w=1.0);
    6261
    6362      /**
     
    6766     
    6867      /**
    69           bool telling which group the data point belong to
     68          bool telling which group the data point belongs to
    7069      */
    7170      bool label;
Note: See TracChangeset for help on using the changeset viewer.