Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Stephan Hilb
dune-istl
Commits
b646d9cd
Commit
b646d9cd
authored
8 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
[dynamic polymorphism][amg] make KAMG use a dynamic category
parent
ee6dd91f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/istl/paamg/kamg.hh
+10
-7
10 additions, 7 deletions
dune/istl/paamg/kamg.hh
with
10 additions
and
7 deletions
dune/istl/paamg/kamg.hh
+
10
−
7
View file @
b646d9cd
...
...
@@ -35,9 +35,10 @@ namespace Dune
typedef
typename
AMG
::
Range
Range
;
public:
enum
{
/** @brief The solver category. */
category
=
AMG
::
category
//! Category of the preconditioner (see SolverCategory::Category)
virtual
SolverCategory
::
Category
category
()
const
{
return
amg_
.
category
();
};
/**
...
...
@@ -163,10 +164,12 @@ namespace Dune
/** @brief The type of the scalar product. */
typedef
typename
Amg
::
ScalarProduct
ScalarProduct
;
enum
{
/** @brief The solver category. */
category
=
Amg
::
category
//! Category of the preconditioner (see SolverCategory::Category)
virtual
SolverCategory
::
Category
category
()
const
{
return
amg
.
category
();
};
/**
* @brief Construct a new amg with a specific coarse solver.
* @param matrices The already set up matix hierarchy.
...
...
@@ -338,7 +341,7 @@ namespace Dune
if
(
matrix
!=
amg
.
matrices_
->
matrices
().
finest
())
while
(
true
)
{
scalarproducts
.
push_back
(
std
::
shared_ptr
<
typename
Amg
::
ScalarProduct
>
(
Amg
::
ScalarProductChooser
::
construct
(
*
pinfo
)));
scalarproducts
.
push_back
(
createScalarProduct
<
X
>
(
*
pinfo
,
category
(
)));
std
::
shared_ptr
<
InverseOperator
<
Domain
,
Range
>
>
ks
=
std
::
shared_ptr
<
InverseOperator
<
Domain
,
Range
>
>
(
new
KrylovSolver
(
*
matrix
,
*
(
scalarproducts
.
back
()),
*
(
ksolvers
.
back
()),
levelDefectReduction
,
...
...
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