Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59065 - sandbox/numeric_bindings/libs/numeric/bindings/atlas
From: rutger_at_[hidden]
Date: 2010-01-16 03:12:32


Author: rutger
Date: 2010-01-16 03:12:31 EST (Sat, 16 Jan 2010)
New Revision: 59065
URL: http://svn.boost.org/trac/boost/changeset/59065

Log:
re-added dotu to the cvct test cases

Text files modified:
   sandbox/numeric_bindings/libs/numeric/bindings/atlas/ublas_cvct.cc | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/numeric_bindings/libs/numeric/bindings/atlas/ublas_cvct.cc
==============================================================================
--- sandbox/numeric_bindings/libs/numeric/bindings/atlas/ublas_cvct.cc (original)
+++ sandbox/numeric_bindings/libs/numeric/bindings/atlas/ublas_cvct.cc 2010-01-16 03:12:31 EST (Sat, 16 Jan 2010)
@@ -53,13 +53,13 @@
   print_v (v1, "v1");
 
   cout << endl;
- cout << "v^T v1 = " << blas::dotc (v, v1) << " == "
+ cout << "v^T v1 = " << blas::dot (v, v1) << " == "
     << blas::dotu (v, v1) << " == "
     << inner_prod (v, v1) << endl;
- cout << "v^T v = " << blas::dotc (v, v) << " == "
+ cout << "v^T v = " << blas::dot (v, v) << " == "
     << blas::dotu (v, v) << " == "
     << inner_prod (v, v) << endl;
- cout << "v1^T v1 = " << blas::dotc (v1, v1) << " == "
+ cout << "v1^T v1 = " << blas::dot (v1, v1) << " == "
     << blas::dotu (v1, v1) << " == "
     << inner_prod (v1, v1) << endl;
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk