Skip to content
Snippets Groups Projects
Commit f74e91ab authored by Oliver Sander's avatar Oliver Sander
Browse files

added class SolverError

[[Imported from SVN: r1325]]
parent 3020dcf0
Branches
Tags
No related merge requests found
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef __DUNE_NUMPROC_HH__
#define __DUNE_NUMPROC_HH__
#ifndef DUNE_NUMPROC_HH
#define DUNE_NUMPROC_HH
namespace Dune {
//! \todo Please doc me!
/** \brief Exception thrown by solvers */
class SolverError : public Exception {};
/** \brief Base class for numerical procedures */
class NumProc
{
public:
/** \brief Different levels of verbosity */
enum VerbosityMode {QUIET, REDUCED, FULL};
/** \brief Controls the amount of screen output of a numproc */
VerbosityMode verbosity_;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment