Home | History | Annotate | Download | only in unittest

Lines Matching full:double

2    std::vector<double> k;
13 inline double& operator[] (int ix) {
18 inline const double& operator[] (int ix) const {
39 inline Vector operator* (double factor) const {
46 inline double DotProduct (const Vector & other) const {
48 double ret = 0.0;
54 inline double Len2 () const {
55 double ret = 0.0;
61 inline double Len () const { return sqrt(Len2()); }
79 std::vector<double*> data;
102 double * k = new double[M];
109 inline double& At(int i, int j) {
116 inline const double& At(int i, int j) const {
158 Vector EstimateParameters(const Matrix & perf_m, const Vector & stats_v, double rel_diff, int * iter_count = NULL)
191 const double & m_n = perf_m.At(m,n);
254 double prev_distance = stats_v.Len2();
271 double step = 1024.0;
272 double new_distance;