git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30976
0785d39b-7218-0410-832d-
ea1e28bc413d
-// ConstraintMatrix::add_line crashes in release mode
+// ConstraintMatrix::add_line crashes in release mode (missing compress inside ConstraintMatrix)
#include "../tests.h"
#include <deal.II/base/logstream.h>
unsigned int numproc = Utilities::MPI::n_mpi_processes (MPI_COMM_WORLD);
IndexSet local_active_together(3);
- local_active_together.add_range(0,1);
- local_active_together.add_range(1,3);
-
+ local_active_together.add_range(0,3);
+ //local_active_together.compress();
+
ConstraintMatrix cm(local_active_together);
cm.add_line(1);
cm.close();
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams