Skip to content

Commit

Permalink
fix dummy context test
Browse files Browse the repository at this point in the history
  • Loading branch information
AdhocMan committed Apr 9, 2024
1 parent 953b1ce commit 6ad6c30
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/unit/test_domain_decomposition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,15 @@ struct dummy_context {
cell_label_range gather_cell_label_range(const cell_label_range& local_ranges) const { throw unimplemented{__FUNCTION__}; }
cell_labels_and_gids gather_cell_labels_and_gids(const cell_labels_and_gids& local_labels_and_gids) const { throw unimplemented{__FUNCTION__}; }
template <typename T> std::vector<T> gather(T value, int) const { throw unimplemented{__FUNCTION__}; }
distributed_request send_recv_nonblocking(std::size_t dest_count,
void* dest_data,
int dest,
std::size_t source_count,
const void* source_data,
int source,
int tag) const {
throw unimplemented{__FUNCTION__};
}

int id() const { return id_; }
int size() const { return size_; }
Expand Down

0 comments on commit 6ad6c30

Please sign in to comment.