Maikel Nadolski

Results 9 comments of Maikel Nadolski

Paraview has fixed some issues with AMReX plotfiles within its latest Release with huge improvements compared to its release candidates. It is worth trying that again with a newer Paraview...

I just tested it against the current branch and hit the same issues, i.e. seeing no glyphs. It helped me to first apply an "Extract Surface" filter before using the...

That is a good idea since I haven't run any tests to check if something is breaking.

Ok I will do a pull request soon for `SAMRAI::hier::Patch`. I wonder if one should sweep through the library and check this for consistency. To be honest, I haven't measured...

What is the exact benefit of print being a keyword instead of a regular function?

IMHO, what you do here is to introduce runtime polymorphism based on (multi dimensional) indices. As in: for each runtime md index `I` call a different function `f`. The present...

There is also an implementation which uses std::variant to lift runtime Indices to compile time without recursion. But I dont quite understand the problem with lambdas and therefore I dont...

Hm yes, that is the direction that I thought of and the Variant factory can be improved. Lets see if it brings anything to the table Edit: I mean I...