MueLu Version of the Day
Loading...
Searching...
No Matches
MueLu.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// MueLu: A package for multigrid based preconditioning
4//
5// Copyright 2012 NTESS and the MueLu contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9
10#ifndef MUELU_HPP
11#define MUELU_HPP
12
13// This header is to simplify examples or user drivers.
14
15#include "MueLu_ConfigDefs.hpp"
16
17// Teuchos
18#include <Teuchos_RCP.hpp>
19#include <Teuchos_ParameterList.hpp>
20#include <Teuchos_CommandLineProcessor.hpp>
21#include <Teuchos_GlobalMPISession.hpp>
22#include <Teuchos_DefaultComm.hpp>
23
24// Xpetra
25#include <Xpetra_Parameters.hpp>
26#include <Xpetra_MapFactory.hpp>
27#include <Xpetra_CrsMatrixWrap.hpp>
28#include <Xpetra_MultiVectorFactory.hpp>
29#include <Xpetra_VectorFactory.hpp>
30
31// MueLu
32#include "MueLu_FactoryManager.hpp"
33#include "MueLu_Hierarchy.hpp"
34#include "MueLu_Utilities.hpp"
35
36#endif