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
!170
use concept aliases in BoundaryConditions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
use concept aliases in BoundaryConditions
feature/concepts_in_bc
into
master
Overview
0
Commits
1
Changes
2
Merged
Praetorius, Simon
requested to merge
feature/concepts_in_bc
into
master
4 years ago
Overview
0
Commits
1
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
10536d3b
1 commit,
4 years ago
2 files
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
amdis/DirichletBC.hpp
+
4
−
4
Options
@@ -110,8 +110,8 @@ namespace AMDiS
/// Make a DirichletBC from a row- and colbasis with treepath arguments
template
<
class
Mat
,
class
Sol
,
class
Rhs
,
class
RB
,
class
RTP
,
class
CB
,
class
CTP
,
class
Values
,
REQUIRES
(
Dune
::
models
<
Dune
::
Functions
::
Concept
::
GlobalBasis
<
typename
RB
::
GridView
>,
RB
>
()
),
REQUIRES
(
Dune
::
models
<
Dune
::
Functions
::
Concept
::
GlobalBasis
<
typename
CB
::
GridView
>
,
CB
>
()
)
>
REQUIRES
(
Concept
s
::
GlobalBasis
<
RB
>
),
REQUIRES
(
Concept
s
::
GlobalBasis
<
CB
>
)
>
auto
makeDirichletBC
(
RB
const
&
rowBasis
,
RTP
const
&
rowTreePath
,
CB
const
&
colBasis
,
CTP
const
&
colTreePath
,
BoundarySubset
<
typename
RB
::
GridView
::
Intersection
>
boundarySubset
,
@@ -124,8 +124,8 @@ namespace AMDiS
/// Make a DirichletBC from a global row- and colbasis
template
<
class
Mat
,
class
Sol
,
class
Rhs
,
class
RB
,
class
CB
,
class
Values
,
REQUIRES
(
Dune
::
models
<
Dune
::
Functions
::
Concept
::
GlobalBasis
<
typename
RB
::
GridView
>,
RB
>
()
),
REQUIRES
(
Dune
::
models
<
Dune
::
Functions
::
Concept
::
GlobalBasis
<
typename
CB
::
GridView
>
,
CB
>
()
)
>
REQUIRES
(
Concept
s
::
GlobalBasis
<
RB
>
),
REQUIRES
(
Concept
s
::
GlobalBasis
<
CB
>
)
>
auto
makeDirichletBC
(
RB
const
&
rowBasis
,
CB
const
&
colBasis
,
BoundarySubset
<
typename
RB
::
GridView
::
Intersection
>
boundarySubset
,
Values
&&
values
)
Loading