Lines Matching refs:stats
99 Vector * stats;
113 GoalStats(): stats(NULL), cost_m(NULL), calculated(false) {}
114 ~GoalStats() { delete stats; delete cost_m; }
131 CHECK(stats == NULL);
138 CHECK(stats == NULL);
140 stats = new Vector(types.size());
142 (*stats)[i] = goal[types[i]];
147 return *stats;
151 CHECK(stats != NULL);
156 CHECK(stats != NULL);
176 printf("Stats vector:\n%s\n", stats->ToString().c_str());
178 Vector params = EstimateParameters(*cost_m, *stats, 0.0005, &iterations);
191 printf("Est. stats: %s\n", cost_m->MultiplyRight(params).ToString().c_str());
605 namespace stats {