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
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
Core Modules
dune-istl
Commits
3030b4e1
Commit
3030b4e1
authored
15 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Make the changes that should habe been done with patch 5670 in dune-common the hard way.
[[Imported from SVN: r1104]]
parent
52b0dac1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dune/istl/bcrsmatrix.hh
+1
-1
1 addition, 1 deletion
dune/istl/bcrsmatrix.hh
dune/istl/paamg/aggregates.hh
+3
-3
3 additions, 3 deletions
dune/istl/paamg/aggregates.hh
dune/istl/paamg/galerkin.hh
+1
-1
1 addition, 1 deletion
dune/istl/paamg/galerkin.hh
with
5 additions
and
5 deletions
dune/istl/bcrsmatrix.hh
+
1
−
1
View file @
3030b4e1
...
...
@@ -700,7 +700,7 @@ namespace Dune {
BCRSMatrix
&
Mat
;
// the matrix we are defining
size_type
i
;
// current row to be defined
size_type
nnz
;
// count total number of nonzeros
typedef
std
::
set
<
size_type
,
std
::
less
<
size_type
>
,
PoolAllocator
<
size_type
,
10
>
>
PatternType
;
typedef
std
::
set
<
size_type
,
std
::
less
<
size_type
>
>
PatternType
;
PatternType
pattern
;
// used to compile entries in a row
row_type
current_row
;
// row poiting to the current row to setup
};
...
...
This diff is collapsed.
Click to expand it.
dune/istl/paamg/aggregates.hh
+
3
−
3
View file @
3030b4e1
...
...
@@ -476,7 +476,7 @@ namespace Dune
* @brief The allocator we use for our lists and the
* set.
*/
typedef
PoolA
llocator
<
VertexDescriptor
,
100
>
Allocator
;
typedef
std
::
a
llocator
<
VertexDescriptor
>
Allocator
;
/**
* @brief The type of a single linked list of vertex
...
...
@@ -689,7 +689,7 @@ namespace Dune
* @brief The allocator we use for our lists and the
* set.
*/
typedef
PoolA
llocator
<
Vertex
,
100
>
Allocator
;
typedef
std
::
a
llocator
<
Vertex
>
Allocator
;
/**
* @brief The type of a single linked list of vertex
...
...
@@ -844,7 +844,7 @@ namespace Dune
* @brief The allocator we use for our lists and the
* set.
*/
typedef
PoolA
llocator
<
Vertex
,
1
>
Allocator
;
typedef
std
::
a
llocator
<
Vertex
>
Allocator
;
/**
* @brief The single linked list we use.
...
...
This diff is collapsed.
Click to expand it.
dune/istl/paamg/galerkin.hh
+
1
−
1
View file @
3030b4e1
...
...
@@ -319,7 +319,7 @@ namespace Dune
row
.
insert
(
aggregates
[
seed
]);
ConnectedBuilder
<
G
,
R
,
V
>
conBuilder
(
aggregates
,
graph
,
visitedMap
,
row
);
typedef
typename
G
::
VertexDescriptor
Vertex
;
typedef
PoolA
llocator
<
Vertex
,
100
*
sizeof
(
int
)
>
Allocator
;
typedef
std
::
a
llocator
<
Vertex
>
Allocator
;
typedef
SLList
<
Vertex
,
Allocator
>
VertexList
;
typedef
typename
AggregatesMap
<
Vertex
>::
DummyEdgeVisitor
DummyVisitor
;
VertexList
vlist
;
...
...
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