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

Moved the method implementations out of the namespace Dune brackets.

I also started work on a method which gives me all topological
descendants of a given boundary face.  It encapsulates UG functionality
and is currently not very elegant.  Unfortunately, I need it _urgently_.

[[Imported from SVN: r1780]]
parent dcd742e5
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ namespace Dune
whatever you choose for DIM and DIMWORLD in the line above must be equal
and either 2 or 3. The two dimension-related arguments must both be
there because they actually refer to all external grid implementations
that may require it, and there are some that do no necessarily pose
that may require it, and there are some that do not necessarily pose
restrictions as strict as UG does.
In your DUNE application, you can only instantiate UGGrid<2,2> or
......@@ -270,6 +270,11 @@ namespace Dune {
void adaptWithoutClosure();
void getChildrenOfSubface(typename Traits::template codim<0>::EntityPointer & e,
int elementSide,
int maxl,
Array<FixedArray<unsigned int, 3> >& children) const;
/** \brief The different forms of grid refinement that UG supports */
enum RefinementType {
/** \brief New level consists only of the refined elements */
......@@ -372,8 +377,6 @@ namespace Dune {
}; // end Class UGGrid
#include "uggrid/uggrid.cc"
#if 0
namespace Capabilities
{
......@@ -401,4 +404,7 @@ namespace Dune {
} // namespace Dune
// Include the method definitions
#include "uggrid/uggrid.cc"
#endif
This diff is collapsed.
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