Dream Scatter

Results 108 comments of Dream Scatter
trafficstars

Reduce algebra is an open source library (which Wolfram Mathematica is a derivative of) http://www.reduce-algebra.com/ perhaps there is some data you can import from there, possibly also, what if you...

Aha, well my main goal with UnitSystems is to have physics constants loaded as fast as possible. I may look into making a separate variant of my package with error...

I disagree, I think it should be ```Julia mod(z::Complex, n) = Complex(mod(real(z), n), mod(imag(z), n)) ``` Since this defines `mod` recursively, you can just let `mod` of a `Real` coefficient...

Edit: sorry I was mistaken in my last post. I don't quite see the argument for restricting the dispatch though, if it errors, then it errors, why restrict the dispatch?...

The Reduce.jl package is not currently designed to handle multiprocessing, since communication is based on a single pipe communicating with another process. I've thought about specifically adding some feature to...

Reduce.jl is fairly quick and responsive, but is limited in performance by the character stream interface. It's possible to create a faster interface for Reduce, but it would not be...

Thanks for pointing this scenario out, I have not encountered this specific use case before. By the looks of it, this result is not currently supported. You can observe it...

Yea, I thought about it, but it seems like an unecessary exercise. Also, this package can detect if the binaries were already installed on the system. In that case, Reduce.jl...

I prefer the philosophy of depending on my system packages to minimize redundancy. Yggradsil has the opposite philosophy, it assumes everyone needs the same exact binaries regardless if they are...

Thanks for the interest in my project, I don't currently have time to look into this issue as it's not relevant to my own usage. If you'd like me to...