Andrea Ferretti

Results 160 comments of Andrea Ferretti

The reason is that I want to be explicit about the RNG that I use, and possibly switch the one in use. Your syntax can only work with an implicit...

What you do in Python is to put a **seed** for your RNG, which makes the number generation deterministic. But still, you are tied to the default RNG provided by...

Because Alea does not contain any Random Number Generator, and it is designed to interoperate with any RNG that you might want to provide. Import `future` should now be `import...

Hi @Benjamin-Lee sorry it took a while to ackowledge your issue, I recently had a newborn :-) I am going to see what's going on here, it's definitely strange!

I have not tried your example specifically, but from a quick look, it seems that the issue is that `FushinItem` is a tuple and not an object, and tuples are...

Hi @GordonBGood I agree that the implementation is not really good (this is why the test for primality for bigger ints uses deterministic Miller-Rabin, and probabilistic Miller-Rabin for even bigger...

Thank you, I did not know the internals of intsets. I can easily replace that with custom intsets, and make it odd only. Or switch to your version, I am...

@krux02 I have to admit I was not too familiar with your original design, so I accepted @RSDuck changes without much thought. After this small discussion, the trade-offs are much...

`when compiles(something)` may be what you are looking for. Otherwise, define the interface as a concept and use `if someType is someConcept`

Yeah, that would probably work, although I happen to prefer [Vagga](https://github.com/tailhook/vagga). What would **not** be fun is writing the dockerfiles for all languages! :-)