Esempio n. 1
0
 /// Returns the eliminated matrix assembled on the true dofs, i.e. P^t A_e P.
 HypreParMatrix *ParallelAssembleElim() { return ParallelAssemble(mat_e); }
Esempio n. 2
0
 /// Returns the matrix "assembled" on the true dofs
 HypreParMatrix *ParallelAssemble() { return ParallelAssemble(mat); }
Esempio n. 3
0
HypreParVector *ParGridFunction::ParallelAssemble() const
{
   HypreParVector *tv = pfes->NewTrueDofVector();
   ParallelAssemble(*tv);
   return tv;
}