Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
agnumpde
dune-solvers
Commits
89a821b5
There was a problem fetching the pipeline summary.
Commit
89a821b5
authored
9 years ago
by
Carsten Gräser
Browse files
Options
Downloads
Patches
Plain Diff
Dune-solvers does not require dune-typetree
parent
1301382f
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune.module
+1
-1
1 addition, 1 deletion
dune.module
dune/solvers/common/tuplevector.hh
+4
-4
4 additions, 4 deletions
dune/solvers/common/tuplevector.hh
with
5 additions
and
5 deletions
dune.module
+
1
−
1
View file @
89a821b5
...
@@ -7,4 +7,4 @@ Module: dune-solvers
...
@@ -7,4 +7,4 @@ Module: dune-solvers
Version
:
2.5
Version
:
2.5
Maintainer
:
oliver
.
sander
@
tu
-
dresden
.
de
Maintainer
:
oliver
.
sander
@
tu
-
dresden
.
de
#depending on
#depending on
Depends
:
dune
-
common
dune
-
grid
dune
-
istl
dune
-
localfunctions
dune
-
typetree
Depends
:
dune
-
common
dune
-
grid
dune
-
istl
dune
-
localfunctions
This diff is collapsed.
Click to expand it.
dune/solvers/common/tuplevector.hh
+
4
−
4
View file @
89a821b5
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
#include
<tuple>
#include
<tuple>
#include
<dune/
typetree/utility
.hh>
#include
<dune/
common/indices
.hh>
namespace
Dune
namespace
Dune
{
{
...
@@ -34,7 +34,7 @@ namespace Solvers
...
@@ -34,7 +34,7 @@ namespace Solvers
/** \brief Const access to the tuple elements */
/** \brief Const access to the tuple elements */
template
<
std
::
size_t
i
>
template
<
std
::
size_t
i
>
auto
operator
[](
const
Dune
::
TypeTree
::
index_constant
<
i
>&
)
const
auto
operator
[](
const
Dune
::
index_constant
<
i
>&
)
const
->
decltype
(
std
::
get
<
i
>
(
*
this
))
->
decltype
(
std
::
get
<
i
>
(
*
this
))
{
{
return
std
::
get
<
i
>
(
*
this
);
return
std
::
get
<
i
>
(
*
this
);
...
@@ -42,7 +42,7 @@ namespace Solvers
...
@@ -42,7 +42,7 @@ namespace Solvers
/** \brief Non-const access to the tuple elements */
/** \brief Non-const access to the tuple elements */
template
<
std
::
size_t
i
>
template
<
std
::
size_t
i
>
auto
operator
[](
const
Dune
::
TypeTree
::
index_constant
<
i
>&
)
auto
operator
[](
const
Dune
::
index_constant
<
i
>&
)
->
decltype
(
std
::
get
<
i
>
(
*
this
))
->
decltype
(
std
::
get
<
i
>
(
*
this
))
{
{
return
std
::
get
<
i
>
(
*
this
);
return
std
::
get
<
i
>
(
*
this
);
...
@@ -60,4 +60,4 @@ namespace Solvers
...
@@ -60,4 +60,4 @@ namespace Solvers
}
// namespace Dune
}
// namespace Dune
#endif
#endif
\ No newline at end of file
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