From a0b14a8d5885b4ae666fe58ff641911f0fecb7bb Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 4 Feb 2025 09:20:24 -0500 Subject: [PATCH] Tpetra: Fix typo in CrsGraph::isIdenticalTo() Signed-off-by: Daniel Arndt --- packages/tpetra/core/src/Tpetra_CrsGraph_def.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tpetra/core/src/Tpetra_CrsGraph_def.hpp b/packages/tpetra/core/src/Tpetra_CrsGraph_def.hpp index 17fbcbfb9a5d..3301d63e9ce8 100644 --- a/packages/tpetra/core/src/Tpetra_CrsGraph_def.hpp +++ b/packages/tpetra/core/src/Tpetra_CrsGraph_def.hpp @@ -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 > // nonlocals_ isa std::map >