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
04b2b5ca
Commit
04b2b5ca
authored
9 years ago
by
oliver.sander_at_tu-dresden.de
Browse files
Options
Downloads
Patches
Plain Diff
Implement DefaultBitVector_t for MultiTypeBlockVector
parent
3a75f982
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/solvers/common/defaultbitvector.hh
+9
-0
9 additions, 0 deletions
dune/solvers/common/defaultbitvector.hh
with
9 additions
and
0 deletions
dune/solvers/common/defaultbitvector.hh
+
9
−
0
View file @
04b2b5ca
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
#include
<dune/common/fvector.hh>
#include
<dune/common/fvector.hh>
#include
<dune/istl/bvector.hh>
#include
<dune/istl/bvector.hh>
#include
<dune/istl/multitypeblockvector.hh>
#include
<dune/solvers/common/tuplevector.hh>
namespace
Dune
{
namespace
Dune
{
namespace
Solvers
{
namespace
Solvers
{
...
@@ -37,6 +40,12 @@ struct DefaultBitVector<BlockVector<FieldVector<T,i>, A>>
...
@@ -37,6 +40,12 @@ struct DefaultBitVector<BlockVector<FieldVector<T,i>, A>>
using
type
=
BitSetVector
<
i
>
;
using
type
=
BitSetVector
<
i
>
;
};
};
template
<
typename
...
Args
>
struct
DefaultBitVector
<
MultiTypeBlockVector
<
Args
...
>
>
{
using
type
=
TupleVector
<
typename
DefaultBitVector
<
Args
>::
type
...
>
;
};
}
// end namespace Imp
}
// end namespace Imp
...
...
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