Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Sander, Oliver
dune-gfe
Merge requests
!48
Couldn't fetch the linked file.
Migrate from dune-fufem to dune-functions bases
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Migrate from dune-fufem to dune-functions bases
lnebel/dune-gfe:migration
into
master
Overview
71
Commits
4
Pipelines
79
Changes
1
Merged
Nebel, Lisa Julia
requested to merge
lnebel/dune-gfe:migration
into
master
4 years ago
Overview
2
Commits
4
Pipelines
79
Changes
1
Expand
Migrate from dune-fufem to dune-functions bases.
Edited
4 years ago
by
Nebel, Lisa Julia
0
0
Merge request reports
Viewing commit
340947db
Show latest version
1 file
+
16
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
340947db
Add random access operator and -= operator to realtuple
· 340947db
Lisa Julia Nebel
authored
4 years ago
dune/gfe/realtuple.hh
+
16
−
0
Options
@@ -66,6 +66,17 @@ public:
return
*
this
;
}
RealTuple
&
operator
-=
(
const
Dune
::
FieldVector
<
T
,
N
>&
other
)
{
data_
-=
other
;
return
*
this
;
}
template
<
class
T2
>
RealTuple
&
operator
-=
(
const
RealTuple
<
T2
,
N
>&
other
)
{
data_
-=
other
.
data_
;
return
*
this
;
}
/** \brief Assigment from RealTuple with different type -- used for automatic differentiation with ADOL-C */
template
<
class
T2
>
RealTuple
&
operator
<<=
(
const
RealTuple
<
T2
,
N
>&
other
)
{
@@ -74,6 +85,11 @@ public:
return
*
this
;
}
/** \brief Const random-access operator*/
T
operator
[]
(
const
size_t
indexVariable
)
const
{
return
data_
[
indexVariable
];
}
/** \brief Rebind the RealTuple to another coordinate type */
template
<
class
U
>
struct
rebind
Loading