Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Backofen, Rainer
amdis
Commits
1a2d274f
Commit
1a2d274f
authored
Aug 23, 2012
by
Thomas Witkowski
Browse files
Fix for gcc 4.1
parent
6febba8b
Changes
2
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/SystemVector.h
View file @
1a2d274f
...
...
@@ -40,14 +40,14 @@ namespace AMDiS {
int
size
)
:
name
(
name_
),
feSpace
(
feSpace_
),
vectors
(
size
,
NULL
)
vectors
(
size
)
{}
/// Copy Constructor.
SystemVector
(
const
SystemVector
&
rhs
)
:
name
(
rhs
.
getName
()),
feSpace
(
rhs
.
getFeSpaces
()),
vectors
(
rhs
.
getNumVectors
()
,
NULL
)
vectors
(
rhs
.
getNumVectors
())
{
for
(
unsigned
int
i
=
0
;
i
<
vectors
.
size
();
i
++
)
vectors
[
i
]
=
new
DOFVector
<
double
>
(
*
rhs
.
getDOFVector
(
i
));
...
...
AMDiS/src/parallel/PetscSolverFeti.cc
View file @
1a2d274f
...
...
@@ -788,12 +788,18 @@ namespace AMDiS {
fetiDataInterface
.
mat_interior_interface
=
getMatInteriorCoarseByComponent
(
2
);
MSG
(
"TEST A1
\n
"
);
fetiDataInterface
.
mat_interface_interior
=
getMatCoarseInteriorByComponent
(
2
);
MSG
(
"TEST A2
\n
"
);
fetiDataInterface
.
mat_primal_interface
=
getMatCoarse
(
0
,
1
);
fetiDataInterface
.
mat_interface_primal
=
getMatCoarse
(
1
,
0
);
MSG
(
"TEST A
1
\n
"
);
MSG
(
"TEST A
3
\n
"
);
MatCreateShell
(
mpiCommGlobal
,
interfaceDofMap
.
getRankDofs
()
+
lagrangeMap
.
getRankDofs
(),
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment