Browse Source

threading: removing misguided comment

Signed-off-by: Christoph Ruegg <git@cdrnet.ch>
pull/2/head
Christoph Ruegg 17 years ago
parent
commit
34f4bb62bf
  1. 2
      src/Numerics/Threading/Parallel.cs

2
src/Numerics/Threading/Parallel.cs

@ -66,7 +66,6 @@ namespace MathNet.Numerics.Threading
}
// fast forward execution in case parallelization is disabled
// (cdrnet, 200908): should we fast forward on STA threads as well?
if (Control.DisableParallelization
|| ThreadQueue.ThreadCount <= 1
|| ThreadQueue.IsInWorkerThread)
@ -137,7 +136,6 @@ namespace MathNet.Numerics.Threading
}
// fast forward execution in case parallelization is disabled
// (cdrnet, 200908): should we fast forward on STA threads as well?
if (Control.DisableParallelization
|| ThreadQueue.ThreadCount <= 1
|| ThreadQueue.IsInWorkerThread)

Loading…
Cancel
Save