Josua Grawitter

Results 8 issues of Josua Grawitter

Because `big53()` calls [`setrounding()` from `Base`](https://docs.julialang.org/en/v1/base/numbers/#Base.Rounding.setrounding-Tuple{Type,Any}) functions like `^`, `atan()` and `(:tanh, :asinh, :acosh, :atanh)` are currently not thread-safe on Intervals. Ideally all mathematical functions should be thread-safe so Intervals...

The example in `test/smiley_examples.jl` has 41 roots, however, only 20 are found on some setups. On other setups all 41 are identified correctly. This inconsistency was first discovered and discussed...

It was impossible to run nufft2 because the input has to be real and complex at the same time.

Tests only cover nudft routines which are not exported/acvertised in documentation. As a result nufft2 is unusable without any indication from tests.

Anscheinend verträgt sich bibbot nicht mit den Diagrammen im ZEIT Energiemonitor. Wenn Bibbot aktiv ist, werden die Diagramme in Firefox nicht dargestellt. Deaktiviert man bibbot, gehen die Diagramme wieder.

based on https://discourse.julialang.org/t/callback-at-every-3-integrator-steps-in-differential-equations-jl/56775/5

Useful for `unique`, `intersect`, etc on Arrays of `OffsetInteger`s or, for example, to compare `Face`s (Potentially a better solution would be through automatic type promotion? The result would be the...

GLNormalMesh(vertices, faces) is not type stable. How to reproduce: ```julia verts = [Point{3}(rand(Float32, 3)...) for i in 1:3] faces = [Triangle(1, 2, 3)] @code_warntype GLNormalMesh(verts, faces) ``` (tested in GeometryTypes...