Skip to content

Commit

Permalink
Drop the idea of $*DEGREE for now
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 14, 2020
1 parent 5def05c commit 6314277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core.c/Iterable.pm6
Expand Up @@ -30,7 +30,7 @@ my role Iterable {

method hyper(
Int(Cool) :$batch = 64,
Int(Cool) :$degree = $*DEGREE // min(nqp::cpucores() - 1,1)
Int(Cool) :$degree = min(nqp::cpucores() - 1,1)
) {
#?if !js
HyperSeq.new:
Expand All @@ -46,7 +46,7 @@ my role Iterable {

method race(
Int(Cool) :$batch = 64,
Int(Cool) :$degree = $*DEGREE // min(nqp::cpucores() - 1,1)
Int(Cool) :$degree = min(nqp::cpucores() - 1,1)
) {
#?if !js
RaceSeq.new:
Expand Down

0 comments on commit 6314277

Please sign in to comment.