Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lisa_julia.nebel_at_tu-dresden.de
dune-elasticity
Commits
8b5616b7
Commit
8b5616b7
authored
Jan 10, 2014
by
akbib
Committed by
akbib
Jan 10, 2014
Browse files
Add dummy implementation of a pure virtual method from the base class.
[[Imported from SVN: r12622]]
parent
5a2ed7b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
dune/elasticity/assemblers/ogdenassembler.hh
View file @
8b5616b7
...
...
@@ -101,8 +101,16 @@ template <class GridType, class TrialLocalFE, class AnsatzLocalFE>
const
Dune
::
BlockVector
<
Dune
::
FieldVector
<
double
,
dim
>
>&
localSolution
,
LocalMatrix
&
localMatrix
,
Dune
::
BlockVector
<
Dune
::
FieldVector
<
double
,
dim
>
>&
localRhs
,
const
TrialLocalFE
&
tFE
,
const
AnsatzLocalFE
&
aFE
)
const
;
// This method is never actually called, it's just here to implement all pure virtual functions
void
assemble
(
const
Element
&
element
,
LocalMatrix
&
localMatrix
,
const
TrialLocalFE
&
tFE
,
const
AnsatzLocalFE
&
aFE
)
const
{
// dummy
Dune
::
BlockVector
<
Dune
::
FieldVector
<
double
,
dim
>
>
localSol
(
tFE
.
localBasis
().
size
());
localSol
=
0
;
assemble
(
element
,
localSol
,
localMatrix
,
tFE
,
aFE
);
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment