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
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
Backofen, Rainer
amdis
Commits
a2ef2a34
Commit
a2ef2a34
authored
13 years ago
by
Naumann, Andreas
Browse files
Options
Downloads
Patches
Plain Diff
removed unused functions
parent
8b20a02e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
AMDiS/src/DOFIndexed.cc
+2
-4
2 additions, 4 deletions
AMDiS/src/DOFIndexed.cc
AMDiS/src/DOFIndexed.h
+0
-2
0 additions, 2 deletions
AMDiS/src/DOFIndexed.h
AMDiS/src/SystemVector.h
+4
-0
4 additions, 0 deletions
AMDiS/src/SystemVector.h
with
6 additions
and
6 deletions
AMDiS/src/DOFIndexed.cc
+
2
−
4
View file @
a2ef2a34
...
@@ -93,7 +93,6 @@ namespace AMDiS {
...
@@ -93,7 +93,6 @@ namespace AMDiS {
}
}
void
mv
(
MatrixTranspose
transpose
,
void
mv
(
MatrixTranspose
transpose
,
const
DOFMatrix
&
a
,
const
DOFMatrix
&
a
,
const
DOFIndexed
<
double
>
&
x
,
const
DOFIndexed
<
double
>
&
x
,
...
@@ -101,7 +100,8 @@ namespace AMDiS {
...
@@ -101,7 +100,8 @@ namespace AMDiS {
bool
add
)
bool
add
)
{
{
FUNCNAME
(
"DOFIndexed<T>::mv"
);
FUNCNAME
(
"DOFIndexed<T>::mv"
);
TEST_EXIT
(
false
)(
"This function is not supported any more
\n
"
);
#if 0
if (transpose == NoTranspose)
if (transpose == NoTranspose)
mult(a.getBaseMatrix(), x, result);
mult(a.getBaseMatrix(), x, result);
else if (transpose == Transpose)
else if (transpose == Transpose)
...
@@ -109,7 +109,6 @@ namespace AMDiS {
...
@@ -109,7 +109,6 @@ namespace AMDiS {
else
else
ERROR_EXIT("transpose = %d\n", transpose);
ERROR_EXIT("transpose = %d\n", transpose);
#if 0
int irow, jcol;
int irow, jcol;
double sum;
double sum;
...
@@ -138,5 +137,4 @@ namespace AMDiS {
...
@@ -138,5 +137,4 @@ namespace AMDiS {
}
}
#endif
#endif
}
}
}
}
This diff is collapsed.
Click to expand it.
AMDiS/src/DOFIndexed.h
+
0
−
2
View file @
a2ef2a34
...
@@ -108,13 +108,11 @@ namespace AMDiS {
...
@@ -108,13 +108,11 @@ namespace AMDiS {
virtual
const
T
&
operator
[](
DegreeOfFreedom
i
)
const
=
0
;
virtual
const
T
&
operator
[](
DegreeOfFreedom
i
)
const
=
0
;
};
};
void
mv
(
MatrixTranspose
transpose
,
void
mv
(
MatrixTranspose
transpose
,
const
DOFMatrix
&
a
,
const
DOFMatrix
&
a
,
const
DOFIndexed
<
double
>
&
x
,
const
DOFIndexed
<
double
>
&
x
,
DOFIndexed
<
double
>
&
result
,
DOFIndexed
<
double
>
&
result
,
bool
add
=
false
);
bool
add
=
false
);
}
// namespace AMDiS
}
// namespace AMDiS
#endif // AMDIS_DOFINDEXED_H
#endif // AMDIS_DOFINDEXED_H
This diff is collapsed.
Click to expand it.
AMDiS/src/SystemVector.h
+
4
−
0
View file @
a2ef2a34
...
@@ -377,6 +377,9 @@ namespace AMDiS {
...
@@ -377,6 +377,9 @@ namespace AMDiS {
SystemVector
&
result
,
SystemVector
&
result
,
bool
add
=
false
)
bool
add
=
false
)
{
{
FUNCNAME
(
"mv()"
);
TEST_EXIT
(
false
)(
"This function is not supported any more.
\n
"
);
#if 0
int size = x.getNumVectors();
int size = x.getNumVectors();
int i;
int i;
...
@@ -396,6 +399,7 @@ namespace AMDiS {
...
@@ -396,6 +399,7 @@ namespace AMDiS {
*(result.getDOFVector(i)),
*(result.getDOFVector(i)),
true);
true);
}
}
#endif
}
}
/// y = a*x + y;
/// y = a*x + y;
...
...
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