Parallel calculations: Difference between revisions

Line 508:
=={{header|Factor}}==
===Manuel Thread Management===
{{incorrect|factor|Given output is not correct. Perhaps copy and paste error?}}
<lang factor>
USING: io kernel fry locals sequences arrays math.primes.factors math.parser channels threads prettyprint ;
Line 532 ⟶ 533:
Number with largest min. factor is 1099726829285419, with factors: { 544651 212609249 }
</pre>
 
===With Concurency Module===
<lang factor>
Anonymous user