Skip to content

Commit 76cdfe8

Browse files
committed
Fixes for non-petsc configurations
1 parent 76536be commit 76cdfe8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

include/numerics/static_condensation.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,10 @@ class StaticCondensationDofMap;
310310
class StaticCondensation : public SparseMatrix<Number>
311311
{
312312
public:
313-
StaticCondensation(const MeshBase &, const System &, const DofMap & full_dof_map);
313+
StaticCondensation(const MeshBase &,
314+
const System &,
315+
const DofMap & full_dof_map,
316+
const StaticCondensationDofMap & reduced_dof_map);
314317

315318
const std::unordered_set<unsigned int> & uncondensed_vars() const { libmesh_not_implemented(); }
316319
StaticCondensationPreconditioner & get_preconditioner() { libmesh_not_implemented(); }

src/numerics/static_condensation.C

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,8 @@ namespace libMesh
472472
{
473473
StaticCondensation::StaticCondensation(const MeshBase &,
474474
const System &,
475-
const DofMap & full_dof_map)
475+
const DofMap & full_dof_map,
476+
const StaticCondensationDofMap &)
476477
: SparseMatrix<Number>(full_dof_map.comm())
477478
{
478479
libmesh_error_msg(

0 commit comments

Comments
 (0)