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
iwr
amdis
Commits
2c1294eb
Commit
2c1294eb
authored
Mar 16, 2011
by
Thomas Witkowski
Browse files
And fixed some small problem.
parent
368c52c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
AMDiS/libtool
View file @
2c1294eb
...
...
@@ -44,7 +44,7 @@ available_tags=" CXX F77"
# ### BEGIN LIBTOOL CONFIG
# Libtool was configured on host
p1q
02
4
:
# Libtool was configured on host
deimos1
02:
# Shell to use when invoking shell scripts.
SHELL
=
"/bin/sh"
...
...
@@ -6760,7 +6760,7 @@ build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
# End:
# ### BEGIN LIBTOOL TAG CONFIG: CXX
# Libtool was configured on host
p1q
02
4
:
# Libtool was configured on host
deimos1
02:
# Shell to use when invoking shell scripts.
SHELL
=
"/bin/sh"
...
...
@@ -7065,7 +7065,7 @@ include_expsyms=""
# ### BEGIN LIBTOOL TAG CONFIG: F77
# Libtool was configured on host
p1q
02
4
:
# Libtool was configured on host
deimos1
02:
# Shell to use when invoking shell scripts.
SHELL
=
"/bin/sh"
...
...
AMDiS/src/parallel/PetscSolver.cc
View file @
2c1294eb
...
...
@@ -144,15 +144,13 @@ namespace AMDiS {
// And add all periodic matrix indices.
for
(
std
::
set
<
int
>::
iterator
it
=
perAsc
.
begin
();
it
!=
perAsc
.
end
();
++
it
)
{
for
(
unsigned
int
i
=
0
;
i
<
newCols
.
size
();
i
++
)
{
TEST_EXIT
(
meshDistributor
->
isPeriodicDof
(
newCols
[
i
],
*
it
))
int
nCols
=
static_cast
<
int
>
(
newCols
.
size
());
for
(
int
i
=
0
;
i
<
nCols
;
i
++
)
{
TEST_EXIT_DBG
(
meshDistributor
->
isPeriodicDof
(
newCols
[
i
],
*
it
))
(
"Wrong periodic DOF associations at boundary %d with DOF %d!
\n
"
,
*
it
,
newCols
[
i
]);
MSG
(
"MAP DOF %d -> %d
\n
"
,
newCols
[
i
],
meshDistributor
->
getPeriodicMapping
(
newCols
[
i
],
*
it
));
newCols
.
push_back
(
meshDistributor
->
getPeriodicMapping
(
newCols
[
i
],
*
it
));
}
}
...
...
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