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
!74
constructor call of FieldVector corrected in convectionDiffusionOperator
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
constructor call of FieldVector corrected in convectionDiffusionOperator
issue/convection_diffusion
into
master
Overview
0
Commits
1
Changes
1
Merged
Praetorius, Simon
requested to merge
issue/convection_diffusion
into
master
5 years ago
Overview
0
Commits
1
Changes
1
Expand
1
0
Merge request reports
Viewing commit
ac07ec57
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ac07ec57
constructor call of FieldVector corrected in convectionDiffusionOperator
· ac07ec57
Praetorius, Simon
authored
5 years ago
src/amdis/localoperators/ConvectionDiffusionOperator.hpp
+
3
−
3
Options
@@ -195,13 +195,13 @@ namespace AMDiS
static
FieldVector
<
T
,
dow
>
makeB
(
FieldVector
<
T
,
N
>&&
b
)
{
return
std
::
move
(
b
);
}
template
<
class
T
>
static
FieldVector
<
T
,
dow
>
makeB
(
FieldVector
<
T
,
1
>
const
&
b
)
{
return
{
T
(
b
)
}
;
}
static
FieldVector
<
T
,
dow
>
makeB
(
FieldVector
<
T
,
1
>
const
&
b
)
{
return
FieldVector
<
T
,
dow
>
(
T
(
b
)
)
;
}
template
<
class
T
>
static
FieldVector
<
T
,
dow
>
makeB
(
FieldVector
<
T
,
1
>&&
b
)
{
return
{
T
(
b
)
}
;
}
static
FieldVector
<
T
,
dow
>
makeB
(
FieldVector
<
T
,
1
>&&
b
)
{
return
FieldVector
<
T
,
dow
>
(
T
(
b
)
)
;
}
template
<
class
T
,
std
::
enable_if_t
<
std
::
is_arithmetic
<
T
>
::
value
,
int
>
=
0
>
static
FieldVector
<
T
,
dow
>
makeB
(
T
b
)
{
return
{
b
}
;
}
static
FieldVector
<
T
,
dow
>
makeB
(
T
b
)
{
return
FieldVector
<
T
,
dow
>
(
b
)
;
}
private
:
GridFctA
gridFctA_
;
Loading