const VectorBase &V,
const bool transpose_left)
{
+#ifdef DEAL_II_USE_LARGE_INDEX_TYPE
+ Assert(false,ExcNotImplemented())
+#endif
const bool use_vector = (V.size() == inputright.m() ? true : false);
if (transpose_left == false)
{
const SparseMatrix &B,
const VectorBase &V) const
{
+#ifdef DEAL_II_USE_LARGE_INDEX_TYPE
+ Assert(false,ExcNotImplemented())
+#endif
internals::perform_mmult (*this, B, C, V, false);
}
const SparseMatrix &B,
const VectorBase &V) const
{
+#ifdef DEAL_II_USE_LARGE_INDEX_TYPE
+ Assert(false,ExcNotImplemented())
+#endif
internals::perform_mmult (*this, B, C, V, true);
}
if ((n_procs == 1) || (my_id == 1))
Assert(AtA.el(1, 1) == 2, ExcMessage("Wrong element in AtA!"));
- deallog << "OK" << endl;
+ deallog << "OK" << std::endl;
}