$include_dir="/home/hyper-archives/ublas/include"; include("$include_dir/msg-header.inc") ?>
From: Gunter Winkler (guwi17_at_[hidden])
Date: 2005-06-11 16:16:57
Hallo,
I think there is a typo in operation_blocked.hpp at line 241, because there 
exists no plus() member function.
mfg
Gunter
RCS file: /cvsroot/boost/boost/boost/numeric/ublas/operation_blocked.hpp,v
retrieving revision 1.12
diff -u -r1.12 operation_blocked.hpp
--- operation_blocked.hpp	4 Jan 2005 14:51:16 -0000	1.12
+++ operation_blocked.hpp	11 Jun 2005 21:11:39 -0000
@@ -239,7 +239,7 @@
                     const matrix<value_type, row_major> e1_range (project (e1 (), range (i_begin, i_end), range (k_begin, k_end)));
                     const matrix<value_type, column_major> e2_range (project (e2 (), range (k_begin, k_end), range (j_begin, j_end)));
 #endif
-                    m_range.plus (prod (e1_range, e2_range));
+                    m_range.plus_assign (prod (e1_range, e2_range));
                 }
 #ifndef BOOST_UBLAS_NO_CACHE
                 project (m, range (i_begin, i_end), range (j_begin, j_end)).assign (m_range);