Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
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
amdis
amdis-core
Commits
8ace3ea4
Commit
8ace3ea4
authored
5 years ago
by
Praetorius, Simon
Browse files
Options
Downloads
Patches
Plain Diff
communicator construction
parent
7c678ccb
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
src/amdis/functions/ParallelGlobalBasis.hpp
+1
-6
1 addition, 6 deletions
src/amdis/functions/ParallelGlobalBasis.hpp
with
1 addition
and
6 deletions
src/amdis/functions/ParallelGlobalBasis.hpp
+
1
−
6
View file @
8ace3ea4
...
...
@@ -86,12 +86,7 @@ namespace AMDiS
ParallelGlobalBasis
(
std
::
string
const
&
name
,
Grid
const
&
grid
,
Args
&&
...
args
)
:
Super
(
FWD
(
args
)...)
,
Observer
<
event
::
adapt
>
(
grid
)
,
comm_
([
&
]()
{
// need to call initialize, before it can be passed to the constructor of
// a communicator.
Super
::
preBasis
().
initializeIndices
();
return
CommunicationCreator
<
Comm
>::
create
(
static_cast
<
Super
const
&>
(
*
this
),
name
+
"->solver"
);
}())
,
comm_
(
CommunicationCreator
<
Comm
>::
create
(
static_cast
<
Super
const
&>
(
*
this
),
name
+
"->solver"
))
{}
/// Construct this global basis with empty name
...
...
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