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

doxygen bug fixed

[[Imported from SVN: r2118]]
parent 1ac74bc9
No related branches found
No related tags found
No related merge requests found
......@@ -163,8 +163,9 @@ namespace Dune {
/**
\brief [<em> provides \ref Dune::Grid </em>]
\brief onedimensional adaptive grid
Onedimensional adaptive grid
\ingroup GridInterface
This implementation of the grid interface provides one-dimensional
grids only. No matter what the values of dim and dimworld may be,
you'll always get a 1D-grid in a 1D-world. Unlike SGrid, however,
......@@ -194,6 +195,8 @@ namespace Dune {
// **********************************************************
public:
/** \brief Provides the standard grid types */
typedef GridTraits<dim,dimworld,
Dune::OneDGrid<dim,dimworld>,
OneDGridGeometry,
......@@ -210,13 +213,16 @@ namespace Dune {
/** \brief Constructor for a uniform grid */
OneDGrid(int numElements, double leftBoundary, double rightBoundary);
/** \brief Default constructor */
OneDGrid();
//! Desctructor
//! Destructor
~OneDGrid();
//! Return maximum level defined in this grid. Levels are numbered
//! 0 ... maxlevel with 0 the coarsest level.
/** \brief Return maximum level defined in this grid.
Levels are numbered 0 ... maxlevel with 0 the coarsest level.
*/
int maxlevel() const {return vertices.size()-1;}
//! Iterator to first entity of given codim on level
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment