-----------------------------------------------------------------------------
| 428 | } |
| 429 | //----------------------------------------------------------------------------- |
| 430 | std::span<const std::int32_t> SparsityPattern::off_diagonal_offsets() const |
| 431 | { |
| 432 | if (_offsets.empty()) |
| 433 | throw std::runtime_error("Sparsity pattern has not be finalized."); |
| 434 | return _off_diagonal_offsets; |
| 435 | } |
| 436 | //----------------------------------------------------------------------------- |
| 437 | MPI_Comm SparsityPattern::comm() const { return _comm.comm(); } |
| 438 | //----------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected