Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
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
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
agnumpde
dune-solvers
Commits
a0be8571
Commit
a0be8571
authored
10 years ago
by
Elias Pipping
Browse files
Options
Downloads
Patches
Plain Diff
Adjust to upstream changes
parent
b2cc6664
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/solvers/test/multigridtest.cc
+1
-1
1 addition, 1 deletion
dune/solvers/test/multigridtest.cc
dune/solvers/test/obstacletnnmgtest.cc
+2
-2
2 additions, 2 deletions
dune/solvers/test/obstacletnnmgtest.cc
with
3 additions
and
3 deletions
dune/solvers/test/multigridtest.cc
+
1
−
1
View file @
a0be8571
...
...
@@ -51,7 +51,7 @@ struct MultigridTestSuite
typedef
typename
GridType
::
LevelGridView
GridView
;
const
GridView
gridView
=
grid
.
levelView
(
grid
.
maxLevel
());
const
GridView
gridView
=
grid
.
level
Grid
View
(
grid
.
maxLevel
());
Matrix
A
;
constructPQ1Pattern
(
gridView
,
A
);
...
...
This diff is collapsed.
Click to expand it.
dune/solvers/test/obstacletnnmgtest.cc
+
2
−
2
View file @
a0be8571
...
...
@@ -129,7 +129,7 @@ bool checkWithGrid(const GridType& grid, const std::string fileName="")
typedef
typename
Dune
::
FieldVector
<
double
,
1
>
RangeType
;
const
GridView
gridView
=
grid
.
leafView
();
const
GridView
gridView
=
grid
.
leaf
Grid
View
();
Matrix
A
;
constructPQ1Pattern
(
gridView
,
A
);
...
...
@@ -181,7 +181,7 @@ bool checkWithYaspGrid(int refine, const std::string fileName="")
std
::
cout
<<
"Testing with YaspGrid<"
<<
dim
<<
">"
<<
std
::
endl
;
std
::
cout
<<
"Number of levels: "
<<
(
grid
.
maxLevel
()
+
1
)
<<
std
::
endl
;
std
::
cout
<<
"Number of leaf nodes: "
<<
grid
.
leafView
().
size
(
dim
)
<<
std
::
endl
;
std
::
cout
<<
"Number of leaf nodes: "
<<
grid
.
leaf
Grid
View
().
size
(
dim
)
<<
std
::
endl
;
passed
=
passed
and
checkWithGrid
(
grid
,
fileName
);
...
...
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