/usr/include/trilinos/Pike_Solver_BlockGaussSeidel.hpp is in libtrilinos-pike-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #ifndef PIKE_SOLVER_BLOCK_GAUSS_SEIDEL_HPP
#define PIKE_SOLVER_BLOCK_GAUSS_SEIDEL_HPP
#include "Pike_Solver_DefaultBase.hpp"
#include <vector>
#include <map>
#include <utility>
namespace pike {
class BlockGaussSeidel : public pike::SolverDefaultBase {
public:
BlockGaussSeidel();
void completeRegistration();
void stepImplementation();
void registerComm(const Teuchos::RCP<const Teuchos::Comm<int> >& comm);
private:
//! Maps the name of a model to the corresponding index in the models vector.
std::map<std::string,std::size_t> modelNameToIndex_;
//! Binds each model to a vector of tranfers where the target of the data transfer is the corresponding model.
std::vector<std::pair<Teuchos::RCP<pike::BlackBoxModelEvaluator>,std::vector<Teuchos::RCP<pike::DataTransfer> > > > modelAndTransfers_;
bool barrierTransfers_;
bool barrierSolves_;
Teuchos::RCP<const Teuchos::Comm<int> > comm_;
};
}
#endif
|