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
Merge requests
!156
corrected creator for sequential istl communication
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
corrected creator for sequential istl communication
issue/nompi_istlcommunication
into
master
Overview
0
Commits
1
Changes
1
Merged
Praetorius, Simon
requested to merge
issue/nompi_istlcommunication
into
master
5 years ago
Overview
0
Commits
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 1
e55f4033
5 years ago
master (base)
and
latest version
latest version
e55f4033
1 commit,
5 years ago
version 1
e55f4033
1 commit,
5 years ago
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/amdis/linearalgebra/istl/Communication.inc.hpp
+
4
−
4
Options
@@ -76,12 +76,12 @@ ISTLCommunication<G,L> CommunicationCreator<ISTLCommunication<G,L>>
#else // HAVE_MPI
template
<
class
Basis
>
std
::
unique_ptr
<
ISTLCommunication
<
Basis
>
>
CommunicationCreator
<
ISTLCommunication
<
Basis
>>
template
<
class
G
,
class
L
>
template
<
class
Basis
>
ISTLCommunication
<
G
,
L
>
CommunicationCreator
<
ISTLCommunication
<
G
,
L
>>
::
create
(
Basis
const
&
/*basis*/
,
std
::
string
const
&
/*prefix*/
)
{
return
std
::
make_unique
<
Communication
>
()
;
return
{}
;
}
#endif // HAVE_MPI
Loading