Skip to content

Commit

Permalink
Tpetra: Fix typo in CrsGraph<LocalOrdinal, GlobalOrdinal, Node>::isId…
Browse files Browse the repository at this point in the history
…enticalTo()

Signed-off-by: Daniel Arndt <[email protected]>
  • Loading branch information
masterleinad committed Feb 4, 2025
1 parent 221f025 commit a0b14a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tpetra/core/src/Tpetra_CrsGraph_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7465,7 +7465,7 @@ namespace Tpetra {
output = this->haveLocalConstants_ == graph.haveLocalConstants_ ? output : false;
output = this->haveGlobalConstants_ == graph.haveGlobalConstants_ ? output : false;
output = this->haveLocalOffRankOffsets_ == graph.haveLocalOffRankOffsets_ ? output : false;
output = this->sortGhostsAssociatedWithEachProcessor_ == this->sortGhostsAssociatedWithEachProcessor_ ? output : false;
output = this->sortGhostsAssociatedWithEachProcessor_ == graph.sortGhostsAssociatedWithEachProcessor_ ? output : false;

// Compare nonlocals_ -- std::map<GlobalOrdinal, std::vector<GlobalOrdinal> >
// nonlocals_ isa std::map<GO, std::vector<GO> >
Expand Down

0 comments on commit a0b14a8

Please sign in to comment.