Skip to content

Commit

Permalink
Merge Pull Request #13779 from masterleinad/Trilinos/tpetra_fix_crsgr…
Browse files Browse the repository at this point in the history
…aph_isIdenticalTo

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: b'Tpetra: Fix typo in CrsGraph<LocalOrdinal, GlobalOrdinal, Node>::isIdenticalTo()'
PR Author: masterleinad
  • Loading branch information
trilinos-autotester authored Feb 4, 2025
2 parents 2b4d2cd + a0b14a8 commit 1e8c4ff
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 1e8c4ff

Please sign in to comment.