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
Backofen, Rainer
amdis
Commits
a2ef2a34
Commit
a2ef2a34
authored
May 02, 2011
by
Naumann, Andreas
Browse files
removed unused functions
parent
8b20a02e
Changes
3
Show whitespace changes
Inline
Side-by-side
AMDiS/src/DOFIndexed.cc
View file @
a2ef2a34
...
...
@@ -93,7 +93,6 @@ namespace AMDiS {
}
void
mv
(
MatrixTranspose
transpose
,
const
DOFMatrix
&
a
,
const
DOFIndexed
<
double
>
&
x
,
...
...
@@ -101,7 +100,8 @@ namespace AMDiS {
bool
add
)
{
FUNCNAME
(
"DOFIndexed<T>::mv"
);
TEST_EXIT
(
false
)(
"This function is not supported any more
\n
"
);
#if 0
if (transpose == NoTranspose)
mult(a.getBaseMatrix(), x, result);
else if (transpose == Transpose)
...
...
@@ -109,7 +109,6 @@ namespace AMDiS {
else
ERROR_EXIT("transpose = %d\n", transpose);
#if 0
int irow, jcol;
double sum;
...
...
@@ -138,5 +137,4 @@ namespace AMDiS {
}
#endif
}
}
AMDiS/src/DOFIndexed.h
View file @
a2ef2a34
...
...
@@ -108,13 +108,11 @@ namespace AMDiS {
virtual
const
T
&
operator
[](
DegreeOfFreedom
i
)
const
=
0
;
};
void
mv
(
MatrixTranspose
transpose
,
const
DOFMatrix
&
a
,
const
DOFIndexed
<
double
>
&
x
,
DOFIndexed
<
double
>
&
result
,
bool
add
=
false
);
}
// namespace AMDiS
#endif // AMDIS_DOFINDEXED_H
AMDiS/src/SystemVector.h
View file @
a2ef2a34
...
...
@@ -377,6 +377,9 @@ namespace AMDiS {
SystemVector
&
result
,
bool
add
=
false
)
{
FUNCNAME
(
"mv()"
);
TEST_EXIT
(
false
)(
"This function is not supported any more.
\n
"
);
#if 0
int size = x.getNumVectors();
int i;
...
...
@@ -396,6 +399,7 @@ namespace AMDiS {
*(result.getDOFVector(i)),
true);
}
#endif
}
/// y = a*x + y;
...
...
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