Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
amdis
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Backofen, Rainer
amdis
Commits
2c1294eb
Commit
2c1294eb
authored
Mar 16, 2011
by
Thomas Witkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
And fixed some small problem.
parent
368c52c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
AMDiS/libtool
AMDiS/libtool
+3
-3
AMDiS/src/parallel/PetscSolver.cc
AMDiS/src/parallel/PetscSolver.cc
+4
-6
No files found.
AMDiS/libtool
View file @
2c1294eb
...
...
@@ -44,7 +44,7 @@ available_tags=" CXX F77"
# ### BEGIN LIBTOOL CONFIG
# Libtool was configured on host
p1q024
:
# Libtool was configured on host
deimos102
:
# 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
p1q024
:
# Libtool was configured on host
deimos102
:
# 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
p1q024
:
# Libtool was configured on host
deimos102
:
# 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
Markdown
is supported
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