Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
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
iwr
amdis
Commits
2fc80215
Commit
2fc80215
authored
12 years ago
by
Thomas Witkowski
Browse files
Options
Downloads
Patches
Plain Diff
Small bug fix in ProblemInstat
parent
55df3b3f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
AMDiS/src/ProblemInstat.cc
+1
-1
1 addition, 1 deletion
AMDiS/src/ProblemInstat.cc
AMDiS/src/parallel/MeshDistributor.cc
+10
-9
10 additions, 9 deletions
AMDiS/src/parallel/MeshDistributor.cc
with
11 additions
and
10 deletions
AMDiS/src/ProblemInstat.cc
+
1
−
1
View file @
2fc80215
...
...
@@ -125,7 +125,7 @@ namespace AMDiS {
oldSolution
=
new
SystemVector
(
"old solution"
,
problemStat
->
getFeSpaces
(),
size
);
for
(
int
i
=
0
;
i
<
size
;
i
++
)
{
oldSolution
->
setDOFVector
(
i
,
new
DOFVector
<
double
>
(
problemStat
->
getFeSpace
(
i
),
name
+
"
->
uOld"
));
name
+
"
_
uOld"
));
oldSolution
->
getDOFVector
(
i
)
->
setCoarsenOperation
(
COARSE_INTERPOL
);
if
(
problemStat
->
getEstimator
(
i
))
...
...
This diff is collapsed.
Click to expand it.
AMDiS/src/parallel/MeshDistributor.cc
+
10
−
9
View file @
2fc80215
...
...
@@ -1491,6 +1491,7 @@ namespace AMDiS {
partitioner
->
getRecvElements
().
size
()
==
0
))
(
"Partition is empty, should not happen!
\n
"
);
// === Create map that maps macro element indices to pointers to the ===
// === macro elements. ===
...
...
@@ -1859,15 +1860,15 @@ namespace AMDiS {
#if (DEBUG != 0)
static
int
fileNumber
(
0
);
//improvised counter for adapt Iteration
stringstream
ss
;
ss
<<
debugOutputDir
<<
"elementMaps."
<<
fileNumber
;
//write local Element Maps to csv file
ParallelDebug
::
writeCsvElementMap
(
feSpaces
[
0
],
*
(
dofMaps
[
0
]),
ss
.
str
(),
"csv"
);
fileNumber
++
;
static
int
fileNumber
(
0
);
//improvised counter for adapt Iteration
stringstream
ss
;
ss
<<
debugOutputDir
<<
"elementMaps."
<<
fileNumber
;
//write local Element Maps to csv file
ParallelDebug
::
writeCsvElementMap
(
feSpaces
[
0
],
*
(
dofMaps
[
0
]),
ss
.
str
(),
"csv"
);
fileNumber
++
;
ParallelDebug
::
testDofContainerCommunication
(
*
this
);
...
...
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