Changeset 3615
- Timestamp:
- Feb 6, 2017, 3:31:36 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Makefile.am
r3605 r3615 83 83 test/pileup.test \ 84 84 test/priority_queue.test \ 85 test/poisson.test \ 85 86 test/queue.test test/queue2.test \ 86 87 test/range.test test/regression.test test/rnd.test \ -
trunk/yat/regression/Makefile.am
r3614 r3615 34 34 yat/regression/NaiveWeighted.cc yat/regression/OneDimensional.cc \ 35 35 yat/regression/OneDimensionalWeighted.cc \ 36 yat/regression/Poisson.cc \ 36 37 yat/regression/Polynomial.cc yat/regression/PolynomialInterpolation.cc \ 37 38 yat/regression/PolynomialWeighted.cc \ -
trunk/yat/regression/Poisson.h
r3614 r3615 24 24 25 25 #include "Multivariate.h" 26 27 #include "yat/utility/Vector.h" 26 28 27 29 namespace theplu { … … 58 60 double predict(const utility::VectorBase& x) const; 59 61 private: 62 utility::Vector beta_; 60 63 }; 61 64
Note: See TracChangeset
for help on using the changeset viewer.