Orestis Ousoultzoglou
                                            Orestis Ousoultzoglou
                                        
                                    ```java IntStream diffs = IntStream.of(Math.abs(a - t), Math.abs(a - g), Math.abs(a - c), Math.abs(t - g), Math.abs(t - c), Math.abs(g - c)); return diffs.allMatch(diff -> diff
You can also do things like ```java "atgc".chars().map(c -> nucleotidePercentage(nucleotideCount.get(c), dna)); ``` if you want more DRY code
I think this can be closed; cref. https://github.com/JuliaLang/julia/pull/53509/files
It would be cool to have some updates on the current status, as getting v1706 to work on ARM is a pain
I had made https://github.com/xlxs4/aocs-models/tree/main/dsmc (see [Dockerfile](https://github.com/xlxs4/aocs-models/blob/main/dsmc/Dockerfile)) back in the day, which worked just fine, in case it's of any help
> do you have downloaded source code by any chance? of what, hyStrath? I use - https://sourceforge.net/projects/openfoam/files/v1706/OpenFOAM-v1706.tgz - https://sourceforge.net/projects/openfoam/files/v1706/ThirdParty-v1706.tgz to build OpenFOAM, and then just clone the hyStrath repo: ```dockerfile...
For anyone interested, I'm currently circumventing this by doing something similar to: ```julia struct Example xs::Vector{Float64} end @option struct _Example xs::String end _from_dict(t, d) = from_dict(t, d) function _from_dict(t::Type{_Example}, d)...
@c42f friendly ping :)
Hi @ranocha, thanks! From a quick look, I can see it's split between [`/dev/MattssonAlmquistVanDerWeide2018...`](https://github.com/ranocha/SummationByPartsOperators.jl/tree/main/dev) and [`/src/MattssonAlmquistVanDerWeide2018...`](https://github.com/ranocha/SummationByPartsOperators.jl/tree/main/src/SBP_coefficients). $x_k$, the non-equidistant grid points in MATLAB ([`D1_accurate_8th.m`](https://bitbucket.org/martinalmquist/optimized_sbp_operators/src/master/Accurate/D1_accurate_8th.m)): ```Matlab %%%% Non-equidistant grid points %%%%%...
Makes perfect sense. Thanks!