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