Skip to content
Snippets Groups Projects
Commit 8f571059 authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

moved to new module dune-solvers

[[Imported from SVN: r2361]]
parent 55cc41d8
Branches
No related tags found
No related merge requests found
#ifndef DUNE_NUMPROC_HH
#define DUNE_NUMPROC_HH
#include <dune/common/exceptions.hh>
/** \brief Exception thrown by solvers */
class SolverError : public Dune::Exception {};
/** \brief Base class for numerical procedures */
class NumProc
{
public:
/** \brief Different levels of verbosity */
enum VerbosityMode {QUIET, REDUCED, FULL};
NumProc() : verbosity_(FULL) {}
NumProc(VerbosityMode verbosity)
: verbosity_(verbosity)
{}
/** \brief Controls the amount of screen output of a numproc */
VerbosityMode verbosity_;
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment