Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
amdis
Commits
60fc51c4
Commit
60fc51c4
authored
Jul 21, 2010
by
Thomas Witkowski
Browse files
Again update due to last interface changes.
parent
e8247874
Changes
1
Show whitespace changes
Inline
Side-by-side
AMDiS/src/ElementFunction.h
View file @
60fc51c4
...
@@ -91,12 +91,10 @@ namespace AMDiS {
...
@@ -91,12 +91,10 @@ namespace AMDiS {
/// evaluation at given coordinates.
/// evaluation at given coordinates.
T
operator
()(
const
DimVec
<
double
>&
bary
)
const
T
operator
()(
const
DimVec
<
double
>&
bary
)
const
{
{
T
*
localVec
=
new
T
[
dofVector
->
getFeSpace
()
->
getBasisFcts
()
->
getNumber
()
]
;
mtl
::
dense_vector
<
T
>
localVec
(
dofVector
->
getFeSpace
()
->
getBasisFcts
()
->
getNumber
()
)
;
dofVector
->
getLocalVector
(
this
->
elInfo
->
getElement
(),
localVec
);
dofVector
->
getLocalVector
(
this
->
elInfo
->
getElement
(),
localVec
);
T
t
=
dofVector
->
getFeSpace
()
->
getBasisFcts
()
->
evalUh
(
bary
,
localVec
);
delete
[]
localVec
;
return
dofVector
->
getFeSpace
()
->
getBasisFcts
()
->
evalUh
(
bary
,
localVec
);
return
t
;
}
}
protected:
protected:
...
...
Write
Preview
Supports
Markdown
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