// -*- c++ -*- // // $COPYRIGHT$ // //=========================================================================== #include #include #include using namespace std; /* example output: 20 */ int main() { //begin mtl::dense1D< double > x(10, 2.0); double s = mtl::sum(x); cout << s << endl; //end return 0; }