OGS
ComputeSparsityPattern.cpp File Reference

Detailed Description

Definition in file ComputeSparsityPattern.cpp.

#include "ComputeSparsityPattern.h"
#include <numeric>
#include <range/v3/range/conversion.hpp>
#include <range/v3/view/transform.hpp>
#include "LocalToGlobalIndexMap.h"
#include "MeshLib/Location.h"
#include "MeshLib/NodeAdjacencyTable.h"
#include "MeshLib/NodePartitionedMesh.h"
Include dependency graph for ComputeSparsityPattern.cpp:

Go to the source code of this file.

Namespaces

namespace  NumLib
 

Functions

GlobalSparsityPattern computeSparsityPatternPETSc (NumLib::LocalToGlobalIndexMap const &dof_table, MeshLib::Mesh const &mesh)
 
GlobalSparsityPattern NumLib::computeSparsityPattern (LocalToGlobalIndexMap const &dof_table, MeshLib::Mesh const &mesh)
 Computes a sparsity pattern for the given inputs.
 

Function Documentation

◆ computeSparsityPatternPETSc()

GlobalSparsityPattern computeSparsityPatternPETSc ( NumLib::LocalToGlobalIndexMap const & dof_table,
MeshLib::Mesh const & mesh )

Definition at line 24 of file ComputeSparsityPattern.cpp.

26{
27 assert(dynamic_cast<MeshLib::NodePartitionedMesh const*>(&mesh));
28 auto const& npmesh =
29 *static_cast<MeshLib::NodePartitionedMesh const*>(&mesh);
30
31 auto const max_nonzeroes = dof_table.getNumberOfGlobalComponents() *
33
34 // The sparsity pattern is misused here in the sense that it will only
35 // contain a single value.
36 return GlobalSparsityPattern(1, max_nonzeroes);
37}
MathLib::SparsityPattern< GlobalIndexType > GlobalSparsityPattern
std::size_t getMaximumNConnectedNodesToNode() const
Get the maximum number of connected nodes to node.

References NumLib::LocalToGlobalIndexMap::getNumberOfGlobalComponents().

Referenced by NumLib::computeSparsityPattern().