Sascha Timme

Results 58 comments of Sascha Timme

I created a [development](https://github.com/JuliaMath/DoubleDouble.jl/tree/development) branch. I only defined so far the new double parameterized type and added some constructors. I am a little bit constrained with my time at the...

I agree with targeting v0.7+. I also like your naming with `Emphasis`, `Accuracy`, `Performance` better. For the implementations of the basic arithmetic operations I want to setup a proper testing...

I hope to get that done this weekend @JeffreySarnoff

I actually wanted to write something up, but somehow it slipped through. Sorry about that! `FloatIterator` is an iterator to iterate a uniform sample from the space of `Float32` or...

Sorry for my slow responses lately, I was quite busy the last couple of weeks but I hope that things get better soon. There is no a `DoubleIterator`: ```julia DoubleIterator(::Type{

So I added some accuracy tests for +, -, *, / and a short benchmark script for these operations. The performance for `Float64` looks really nice ``` Double Float32: Accuracy...

I had a subtle mistake in the benchmark script. The Float64 tests were actually the Float32 tests and the other way around. I updated the table with the correct values.

I had some time this evening and read the relevant parts of ``` [Popescu 2017] Valentina Popescu. Towards fast and certified multiple-precision librairies. Computer Arithmetic. Université de Lyon, 2017. ```...

Agree that the limits should not be overwritten. We define the limits here: https://github.com/saschatimme/ImplicitPlots.jl/blob/d6473bbb6e048b7ca7b41290449bbc68ca479fba/src/ImplicitPlots.jl#L51-L52 The plots recipes state (https://docs.juliaplots.org/latest/recipes/) > The special operator --> turns linecolor --> :blue into get!(plotattributes,...

Yeah I think this is just a breaking change in the `@recipe` macro that I didn't catch