summaryrefslogtreecommitdiff
path: root/graphics/asymptote/statistics.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/statistics.h')
-rw-r--r--graphics/asymptote/statistics.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/asymptote/statistics.h b/graphics/asymptote/statistics.h
index 7e3d2d340d..f3c87c18d9 100644
--- a/graphics/asymptote/statistics.h
+++ b/graphics/asymptote/statistics.h
@@ -11,7 +11,7 @@ class statistics {
double varL;
double varH;
public:
- statistics() : N(0), A(0.0), varL(0.0), varH(0.0) {}
+ statistics() : N(0), A(0.0), varL(0.0), varH(0.0) {}
double count() {return N;}
double mean() {return A;}
void add(double t) {
@@ -38,14 +38,14 @@ public:
return stdev(varH,2.0);
}
void output(const char *text, unsigned int m) {
- std::cout << text << ":\n"
- << m << "\t"
- << A << "\t"
- << stdevL() << "\t"
+ std::cout << text << ":\n"
+ << m << "\t"
+ << A << "\t"
+ << stdevL() << "\t"
<< stdevH() << std::endl;
}
};
-
+
}
#endif