We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
high_primes = 0:wheel_size:PRIMELIMIT |> Map(x->lazyaddFilter(x,wheel_nums,sieve_primes)) |> TCat(length(wheel_nums)) |>Filter(x-> 1<x<=PRIMELIMIT)|>tcollect
A simple wheel sieve algorithm implemented with transducers is not type-stable. The result type is given as "ANY".
The text was updated successfully, but these errors were encountered:
@AliceRoselia Can you provide a minimal working example? i.e. definitions for lazyaddFilter, sieve_primes, wheel_nums, etc?
lazyaddFilter
sieve_primes
wheel_nums
From what you've given it's very hard to track down what could be at play here and whether or not it has anything to do with Transducers.jl
Sorry, something went wrong.
No branches or pull requests
high_primes = 0:wheel_size:PRIMELIMIT |> Map(x->lazyaddFilter(x,wheel_nums,sieve_primes)) |> TCat(length(wheel_nums)) |>Filter(x-> 1<x<=PRIMELIMIT)|>tcollect
A simple wheel sieve algorithm implemented with transducers is not type-stable. The result type is given as "ANY".
The text was updated successfully, but these errors were encountered: