summaryrefslogtreecommitdiffstats
path: root/example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'example.cc')
-rw-r--r--example.cc14
1 files changed, 6 insertions, 8 deletions
diff --git a/example.cc b/example.cc
index c48ef67..427ec02 100644
--- a/example.cc
+++ b/example.cc
@@ -7,20 +7,18 @@
using namespace std;
using namespace vecmathlib;
-
-
-int main(int argc, char** argv)
-{
+int main(int argc, char **argv) {
// Declare a double precision vector with an architecture-dependent
// number of elements
float64_vec x;
// Set each element separately. This is inefficient and should be
// avoided if possible, but we want to demonstrate it here anyway.
- for (int i=0; i<float64_vec::size; ++i) x.set_elt(i, double(i));
+ for (int i = 0; i < float64_vec::size; ++i)
+ x.set_elt(i, double(i));
float64_vec y = x + float64_vec(1.0);
y = sqrt(y);
float64_vec z = log(y);
-
+
// Boolean vectors are closely related to either double or float
// vectors, thus we need to make a distinction
bool64_vec b = x < y;
@@ -29,12 +27,12 @@ int main(int argc, char** argv)
// corresponding to "float64_vec", and there is "int_vec"
// correpsonding to "float_vec".
int64_vec i = convert_int(y);
-
+
cout << "x=" << x << "\n";
cout << "y=" << y << "\n";
cout << "z=" << z << "\n";
cout << "b=" << b << "\n";
cout << "i=" << i << "\n";
-
+
return 0;
}
OpenPOWER on IntegriCloud