Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aland, Sebastian
amdis
Commits
d7a85bf4
Commit
d7a85bf4
authored
Aug 07, 2008
by
Thomas Witkowski
Browse files
* Bug fix in ParallelProblem for the vec-case
parent
83dd4be1
Changes
1
Show whitespace changes
Inline
Side-by-side
AMDiS/src/ParallelProblem.cc
View file @
d7a85bf4
...
...
@@ -1487,11 +1487,18 @@ namespace AMDiS {
if
(
debugMode
)
{
dbgRankSolution
.
resize
(
mpiSize
);
for
(
int
i
=
0
;
i
<
mpiSize
;
i
++
)
{
dbgRankSolution
[
i
]
=
NEW
SystemVector
(
*
(
rankSolution
[
i
]));
dbgRankSolution
[
i
]
=
NEW
SystemVector
(
"debug rank solution"
,
feSpaces
,
nComponents
);
for
(
int
j
=
0
;
j
<
nComponents
;
j
++
)
{
dbgRankSolution
[
i
]
->
setDOFVector
(
j
,
NEW
DOFVector
<
double
>
(
feSpaces
[
j
],
"debug rank solution"
));
}
}
if
(
mpiRank
==
0
)
{
dbgSolution
=
NEW
SystemVector
(
*
(
problem
->
getSolution
()));
dbgSolution
=
NEW
SystemVector
(
"debug solution"
,
feSpaces
,
nComponents
);
for
(
int
i
=
0
;
i
<
nComponents
;
i
++
)
{
dbgSolution
->
setDOFVector
(
i
,
NEW
DOFVector
<
double
>
(
feSpaces
[
i
],
"debug solution"
));
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment