Tpetra parallel linear algebra  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Tpetra_Details_checkGlobalError.hpp
1 // @HEADER
2 // *****************************************************************************
3 // Tpetra: Templated Linear Algebra Services Package
4 //
5 // Copyright 2008 NTESS and the Tpetra contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
16 
17 #ifndef TPETRA_DETAILS_GLOBALERROR_HPP
18 #define TPETRA_DETAILS_GLOBALERROR_HPP
19 
20 #include "TpetraCore_config.h"
21 
22 namespace Teuchos {
23  template<class OrdinalType>
24  class Comm;
25 } // namespace Teuchos
26 
27 #include <ostream>
28 
29 namespace Tpetra {
30 namespace Details {
31 
32 void
33 checkGlobalError(std::ostream& globalOutputStream,
34  const bool localSuccess,
35  const char localErrorMessage[],
36  const char globalErrorMessageHeader[],
37  const Teuchos::Comm<int>& comm);
38 
39 } // namespace Details
40 } // namespace Tpetra
41 
42 #endif // TPETRA_DETAILS_GLOBALERROR_HPP