Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
ag-ohlberger
dune-community
dune-gdt
Commits
8ca59dff
Commit
8ca59dff
authored
4 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[operators.matrix] fix factories, use smaller stencil when possible
parent
1b0c273c
No related branches found
No related tags found
3 merge requests
!10
Draft: consolidate refactoring work
,
!5
Work on refactor operators bindings
,
!1
Refactor operators
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/gdt/operators/matrix.hh
+16
-16
16 additions, 16 deletions
dune/gdt/operators/matrix.hh
with
16 additions
and
16 deletions
dune/gdt/operators/matrix.hh
+
16
−
16
View file @
8ca59dff
...
...
@@ -674,13 +674,13 @@ auto make_matrix_operator(const AssemblyGridViewType& assembly_grid_view,
}
// ... make_matrix_operator(...)
template
<
class
GV
,
size_t
s_
r
,
size_t
s_
rC
,
class
F
,
size_t
r_r
,
size_t
r_rC
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
_r
,
r_
rC
,
F
>&
space
,
template
<
class
GV
,
size_t
r
,
size_t
rC
,
class
F
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
,
rC
,
F
>&
space
,
const
XT
::
LA
::
SparsityPatternDefault
&
pattern
,
const
std
::
string
&
logging_prefix
=
""
)
{
using
M
=
XT
::
LA
::
IstlRowMajorSparseMatrix
<
F
>
;
return
MatrixOperator
<
GV
,
s_
r
,
s_
rC
,
r
_r
,
r_
rC
,
F
,
M
,
GV
,
GV
>
(
return
MatrixOperator
<
GV
,
r
,
rC
,
r
,
rC
,
F
,
M
,
GV
,
GV
>
(
space
.
grid_view
(),
space
,
space
,
new
M
(
space
.
mapper
().
size
(),
space
.
mapper
().
size
(),
pattern
),
logging_prefix
);
}
...
...
@@ -691,13 +691,13 @@ auto make_matrix_operator(const SpaceInterface<GV, r_r, r_rC, F>& space,
auto op = make_matrix_operator<MatrixType>(space, pattern);
\endcode
*/
template
<
class
MatrixType
,
class
GV
,
size_t
s_
r
,
size_t
s_
rC
,
class
F
,
size_t
r_r
,
size_t
r_rC
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
_r
,
r_
rC
,
F
>&
space
,
template
<
class
MatrixType
,
class
GV
,
size_t
r
,
size_t
rC
,
class
F
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
,
rC
,
F
>&
space
,
const
XT
::
LA
::
SparsityPatternDefault
&
pattern
,
const
std
::
string
&
logging_prefix
=
""
)
{
static_assert
(
XT
::
LA
::
is_matrix
<
MatrixType
>::
value
,
""
);
return
MatrixOperator
<
GV
,
s_
r
,
s_
rC
,
r
_r
,
r_
rC
,
F
,
MatrixType
,
GV
,
GV
>
(
return
MatrixOperator
<
GV
,
r
,
rC
,
r
,
rC
,
F
,
MatrixType
,
GV
,
GV
>
(
space
.
grid_view
(),
space
,
space
,
...
...
@@ -715,7 +715,7 @@ template <class AssemblyGridViewType, class SGV, size_t s_r, size_t s_rC, class
auto
make_matrix_operator
(
const
AssemblyGridViewType
&
assembly_grid_view
,
const
SpaceInterface
<
SGV
,
s_r
,
s_rC
,
F
>&
source_space
,
const
SpaceInterface
<
RGV
,
r_r
,
r_rC
,
F
>&
range_space
,
const
Stencil
stencil
=
Stencil
::
element_and_intersection
,
const
Stencil
stencil
=
Stencil
::
automatic
,
const
std
::
string
&
logging_prefix
=
""
)
{
using
M
=
XT
::
LA
::
IstlRowMajorSparseMatrix
<
F
>
;
...
...
@@ -748,7 +748,7 @@ template <class MatrixType,
auto
make_matrix_operator
(
const
AssemblyGridViewType
&
assembly_grid_view
,
const
SpaceInterface
<
SGV
,
s_r
,
s_rC
,
F
>&
source_space
,
const
SpaceInterface
<
RGV
,
r_r
,
r_rC
,
F
>&
range_space
,
const
Stencil
stencil
=
Stencil
::
element_and_intersection
,
const
Stencil
stencil
=
Stencil
::
automatic
,
const
std
::
string
&
logging_prefix
=
""
)
{
static_assert
(
XT
::
LA
::
is_matrix
<
MatrixType
>::
value
,
""
);
...
...
@@ -763,13 +763,13 @@ auto make_matrix_operator(const AssemblyGridViewType& assembly_grid_view,
}
// ... make_matrix_operator(...)
template
<
class
GV
,
size_t
s_
r
,
size_t
s_
rC
,
class
F
,
size_t
r_r
,
size_t
r_rC
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
_r
,
r_
rC
,
F
>&
space
,
const
Stencil
stencil
=
Stencil
::
element_and_intersection
,
template
<
class
GV
,
size_t
r
,
size_t
rC
,
class
F
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
,
rC
,
F
>&
space
,
const
Stencil
stencil
=
Stencil
::
automatic
,
const
std
::
string
&
logging_prefix
=
""
)
{
using
M
=
XT
::
LA
::
IstlRowMajorSparseMatrix
<
F
>
;
return
MatrixOperator
<
GV
,
s_
r
,
s_
rC
,
r
_r
,
r_
rC
,
F
,
M
,
GV
,
GV
>
(
return
MatrixOperator
<
GV
,
r
,
rC
,
r
,
rC
,
F
,
M
,
GV
,
GV
>
(
space
.
grid_view
(),
space
,
space
,
...
...
@@ -784,13 +784,13 @@ auto make_matrix_operator(const SpaceInterface<GV, r_r, r_rC, F>& space,
auto op = make_matrix_operator<MatrixType>(space, stencil);
\endcode
*/
template
<
class
MatrixType
,
class
GV
,
size_t
s_
r
,
size_t
s_
rC
,
class
F
,
size_t
r_r
,
size_t
r_rC
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
_r
,
r_
rC
,
F
>&
space
,
const
Stencil
stencil
=
Stencil
::
element_and_intersection
,
template
<
class
MatrixType
,
class
GV
,
size_t
r
,
size_t
rC
,
class
F
>
auto
make_matrix_operator
(
const
SpaceInterface
<
GV
,
r
,
rC
,
F
>&
space
,
const
Stencil
stencil
=
Stencil
::
automatic
,
const
std
::
string
&
logging_prefix
=
""
)
{
static_assert
(
XT
::
LA
::
is_matrix
<
MatrixType
>::
value
,
""
);
return
MatrixOperator
<
GV
,
s_
r
,
s_
rC
,
r
_r
,
r_
rC
,
F
,
MatrixType
,
GV
,
GV
>
(
return
MatrixOperator
<
GV
,
r
,
rC
,
r
,
rC
,
F
,
MatrixType
,
GV
,
GV
>
(
space
.
grid_view
(),
space
,
space
,
...
...
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