Revert "OpenMP to spClear to parallelize the loop."

This reverts commit d171530b33.
This commit is contained in:
Holger Vogt 2021-02-04 22:12:45 +01:00
parent 6bb95d686c
commit f15aaebc9f
1 changed files with 0 additions and 6 deletions

View File

@ -105,9 +105,6 @@ spClear(MatrixPtr Matrix)
/* Clear matrix. */
if (Matrix->PreviousMatrixWasComplex || Matrix->Complex)
{
#ifdef USE_OMP
#pragma omp parallel for
#endif
for (I = Matrix->Size; I > 0; I--)
{
pElement = Matrix->FirstInCol[I];
@ -121,9 +118,6 @@ spClear(MatrixPtr Matrix)
}
else
{
#ifdef USE_OMP
#pragma omp parallel for
#endif
for (I = Matrix->Size; I > 0; I--)
{
pElement = Matrix->FirstInCol[I];