Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-tectonic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
agnumpde
dune-tectonic
Commits
842d3033
Commit
842d3033
authored
10 years ago
by
Elias Pipping
Browse files
Options
Downloads
Patches
Plain Diff
[Cleanup] Rename BNGSP to Base
parent
ca2153a2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/tectonic/myblockproblem.hh
+8
-8
8 additions, 8 deletions
dune/tectonic/myblockproblem.hh
with
8 additions
and
8 deletions
dune/tectonic/myblockproblem.hh
+
8
−
8
View file @
842d3033
...
...
@@ -24,14 +24,14 @@
template
<
class
ConvexProblem
>
class
MyBlockProblem
:
/* NOT PUBLIC */
BlockNonlinearGSProblem
<
ConvexProblem
>
{
private:
typedef
BlockNonlinearGSProblem
<
ConvexProblem
>
B
NGSP
;
typedef
BlockNonlinearGSProblem
<
ConvexProblem
>
B
ase
;
public:
using
typename
B
NGSP
::
ConvexProblemType
;
using
typename
B
NGSP
::
LocalMatrixType
;
using
typename
B
NGSP
::
LocalVectorType
;
using
typename
B
NGSP
::
MatrixType
;
using
typename
B
NGSP
::
VectorType
;
using
typename
B
ase
::
ConvexProblemType
;
using
typename
B
ase
::
LocalMatrixType
;
using
typename
B
ase
::
LocalVectorType
;
using
typename
B
ase
::
MatrixType
;
using
typename
B
ase
::
VectorType
;
size_t
static
const
block_size
=
ConvexProblem
::
block_size
;
size_t
static
const
coarse_block_size
=
block_size
;
...
...
@@ -56,7 +56,7 @@ class MyBlockProblem : /* NOT PUBLIC */ BlockNonlinearGSProblem<ConvexProblem> {
};
MyBlockProblem
(
Dune
::
ParameterTree
const
&
parset
,
ConvexProblem
&
problem
)
:
B
NGSP
(
parset
,
problem
),
:
B
ase
(
parset
,
problem
),
maxEigenvalues_
(
problem
.
f
.
size
()),
localBisection
(
0.0
,
1.0
,
0.0
,
true
,
0.0
)
{
for
(
size_t
i
=
0
;
i
<
problem
.
f
.
size
();
++
i
)
{
...
...
@@ -199,7 +199,7 @@ class MyBlockProblem : /* NOT PUBLIC */ BlockNonlinearGSProblem<ConvexProblem> {
std
::
vector
<
double
>
maxEigenvalues_
;
// problem data
using
B
NGSP
::
problem_
;
using
B
ase
::
problem_
;
Bisection
const
localBisection
;
...
...
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