[Bug 444] Resizing of SymmetricMatrix fails for BOOST

For more infomation about this bug, visit

--- Comment #3 from Klaas Gadeyne <klaas [dot] gadeyne [..] ...> 2008-02-10 11:24:10 ---
(In reply to comment #2)
> It seems to me that this is a bug in boost or a mistake in using boost.
> I posted a message on the Boost-users and Boost-ublas mailing list concerning
> this problem.

See

This should be fixed in boost 1.35.0

I recalled this bug since all my tests succeeded while I didn't expect them to
be. Shouldn't we uncomment this?

[klaas@ /SVN/bfl-trunk]$
$ svn diff tests/matrixwrapper_test.cpp
Index: tests/matrixwrapper_test.cpp
===================================================================
--- tests/matrixwrapper_test.cpp (revision 28935)
+++ tests/matrixwrapper_test.cpp (working copy)
@@ -188,10 +188,10 @@
SymmetricMatrix Ks_resize(r); Ks_resize = v;
CPPUNIT_ASSERT_EQUAL(Ks.rows(), r+2);
CPPUNIT_ASSERT_EQUAL(Ks.columns(), r+2);
-// Ks.resize(r);
-// CPPUNIT_ASSERT_EQUAL(Ks.rows(), r);
-// CPPUNIT_ASSERT_EQUAL(Ks.columns(), r);
-// CPPUNIT_ASSERT_EQUAL(Ks, Ks_resize);
+ Ks.resize(r);
+ CPPUNIT_ASSERT_EQUAL(Ks.rows(), r);
+ CPPUNIT_ASSERT_EQUAL(Ks.columns(), r);
+ CPPUNIT_ASSERT_EQUAL(Ks, Ks_resize);
// COLUMNVECTOR
ColumnVector Kc(r+2); Kc = v;
ColumnVector Kc_resize(r); Kc_resize = v;

I suggest to close this bug, since this is clearly not a BFL issue.

[Bug 444] Resizing of SymmetricMatrix fails for BOOST

For more infomation about this bug, visit

Tinne De Laet <tinne [dot] delaet [..] ...> changed:

What |Removed |Added
--------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED

--- Comment #4 from Tinne De Laet <tinne [dot] delaet [..] ...> 2008-02-11 08:54:37 ---
> I recalled this bug since all my tests succeeded while I didn't expect them to
> be. Shouldn't we uncomment this?

Done:

Sending tests/matrixwrapper_test.cpp
Transmitting file data .
Committed revision 28938.

> I suggest to close this bug, since this is clearly not a BFL issue.
Ok.
Bug closed.

Tinne