| 45 | virtual PARALLEL_STATUS GetParallelStatus () const override { return Status(); } |
| 46 | virtual void SetParallelStatus (PARALLEL_STATUS stat) const override { SetStatus (stat); } |
| 47 | virtual optional<NgMPI_Comm> GetCommunicator() const override |
| 48 | { |
| 49 | if (paralleldofs) |
| 50 | return paralleldofs->GetCommunicator(); |
| 51 | else |
| 52 | return nullopt; |
| 53 | } |
| 54 | |
| 55 | |
| 56 | virtual shared_ptr<ParallelDofs> GetParallelDofs () const |
nothing calls this directly
no test coverage detected