Luc Grosheintz
Luc Grosheintz
It would be nice to copy entire groups or datasets (incl attributes) from one file to another, as proposed in https://github.com/BlueBrain/HighFive/discussions/1022 There's a function `H5Ocopy` one could use (and we...
In H5Easy there's API for reading and writing one element at a time: https://github.com/BlueBrain/HighFive/blob/5f3ded67b4a9928f4b9b5f691bc0a60aade32232/include/highfive/h5easy_bits/H5Easy_scalar.hpp#L66-L70 https://github.com/BlueBrain/HighFive/blob/5f3ded67b4a9928f4b9b5f691bc0a60aade32232/include/highfive/h5easy_bits/H5Easy_scalar.hpp#L120-L122 It does this by creating a dataset that can be extended in all directions; and...
We use both and one would be enough.
For windows we might need `/bigobj` and certainly need `NOMINMAX` if `windows.h` is included. We might want to include those flags in `HighFive::HighFive`.
This reverts commit ddd00691fca60846c0ff333157a83aad73591e2d. The faulty test has been disabled in the `blueconfigs` repo.
Let's start by reviewing Newtons method for `F(X) = 0` with Jacobian `J(X)`: ``` while(true) { F, J = compute_f_and_jacobian(X); if(is_converged(X, F)) { break; } // Rest of Newton to...
Rumour has it that NMODL crashes very inelegantly when trying to use `sympy` when it's not installed. The task is to check how NMODL crashes when it can't find sympy....
It would seem that from the second line onward, under-indented code will be printed incorrectly. For example: ``` add_mutli_line(R"( x; fooo;kkk )"); ``` would likely produce: ``` {indent}x; {indent}kkk ```...