Federico Stra
Federico Stra
Yes, I'm aware that one can localize the effect with a block > apart from explicitly writing the default or wrapping everything in a scope. I was thinking more about...
I believe this is an issue with an old `cargo-criterion` (https://github.com/bheisler/cargo-criterion/issues/46), which should be already [fixed](https://github.com/bheisler/cargo-criterion/pull/47) in newer versions.
With this change I pass from ``` julia> @benchmark subfactorial(100) BenchmarkTools.Trial: 10000 samples with 1 evaluation. Range (min … max): 185.527 μs … 47.124 ms ┊ GC (min … max):...
**Changes** - I replaced the recursive formula with the simpler `!n = n * !(n-1) + (-1)^n`. - I replaced all operations on `BigInt`s with in-place functions from `Base.GMP.MPZ` to...
They can be both implemented with [`Iterators.product`](https://docs.julialang.org/en/v1/base/iterators/#Base.Iterators.product): ```julia tuples(iter, n) = Iterators.product(ntuple(_ -> iter, n)...) outer(f, iters...) = Iterators.map(args -> f(args...), Iterators.product(iters...)) ``` Example usage: ```julia julia> for t in...
Thanks a lot! It's been a while since I played with this package and I don't remember all the details so I'll have to take a closer look as soon...
Dear Fabian, thanks a lot for the interest in the library! I didn't know about [beyond](https://github.com/galactics/beyond/), so I will have to research into it first. Right now, the class [`tletools.tle.TLE`](https://tletools.readthedocs.io/en/latest/api.html#tletools.tle.TLE)...
What I would like to do in the long term to support interoperability better is to - move everything interoperability-related inside a `tletools.interop` package - remove the `install_requires` dependency on...
Hello! I've improved the [documentation](https://tletools.readthedocs.io/en/latest/api.html#module-tletools.pandas) a bit. There is still more to document but I don't have the time right now. Is this better? Is this what you wanted? >...