Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
amdis
amdis-core
Commits
f5f7b7e5
Commit
f5f7b7e5
authored
5 years ago
by
Praetorius, Simon
Browse files
Options
Downloads
Patches
Plain Diff
derive some method from the super class in MacroGridFactory
parent
4e38a30a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!106
derive some method from the super class in MacroGridFactory
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/amdis/utility/MacroGridFactory.hpp
+5
-0
5 additions, 0 deletions
src/amdis/utility/MacroGridFactory.hpp
with
5 additions
and
0 deletions
src/amdis/utility/MacroGridFactory.hpp
+
5
−
0
View file @
f5f7b7e5
...
...
@@ -19,6 +19,7 @@ namespace Dune
:
public
GridFactoryInterface
<
GridType
>
{
using
Self
=
GridFactory
;
using
Super
=
GridFactoryInterface
<
GridType
>
;
using
ctype
=
typename
GridType
::
ctype
;
enum
{
dim
=
GridType
::
dimension
};
...
...
@@ -70,6 +71,8 @@ namespace Dune
}
}
using
Super
::
insertElement
;
/// \brief insert a boundary segment
// TODO: maybe split boundary segment in simplices
void
insertBoundarySegment
(
const
std
::
vector
<
unsigned
int
>&
vertices
)
override
...
...
@@ -77,6 +80,8 @@ namespace Dune
factory_
->
insertBoundarySegment
(
vertices
);
}
using
Super
::
insertBoundarySegment
;
/// \brief Finalize grid creation and hand over the grid
#if DUNE_VERSION_GT(DUNE_GRID,2,6)
ToUniquePtr
<
GridType
>
createGrid
()
override
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment