Skip to content
Snippets Groups Projects
Commit 29302d1f authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Added method bool continuous () to interface.

Returns true, if the discrete functions that belong to this function space
are continuous.

Furthermore added methods to get polynom order of base functions.

[[Imported from SVN: r184]]
parent 5650dfd0
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,12 @@ namespace Dune {
return asImp().getBaseFunctionSet( en );
}
//! return true if we have global continuous discrete functions.
bool continuous () const
{
return asImp().continuous();
}
//! Get maximal polynom order of functionspace.
int polynomOrder () const
{
......
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