Joshua Lampert
Joshua Lampert
Using the sciml style ```julia @assert 1 == 1 @assert 1 == 1 "error" @assert (1 == 1) "error" ``` gets formatted to ```julia @assert 1 == 1 @assert 1==1...
Currently, C `union`s and `struct`s containing a `union` are wrapped as a julia `struct` having one field `data` with overwritten `Base.getproperty` and `Base.setproperty!` functions, e.g. ```C union testunion { int...
This adds a test using [ExplicitImports.jl](https://github.com/ericphanson/ExplicitImports.jl) to check whether we have unused explicit imports or any implicit imports. It also includes the necessary changes to make the test pass.
There is a problem with the elixir under examples/p4est_2d_dgsem/elixir_advection_nonconforming_flag.jl, when I run it with a custom installation of `p4est`. In order to tell P4est.jl to use the custom `p4est` installation...
I have a package [KernelInterpolation.jl](https://github.com/JoshuaLampert/KernelInterpolation.jl), which performs RBF scattered data interpolation. I added it to the list of other interpolation packages.
Running this action gives the following warning ``` The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738, pyTooling/Actions/with-post step@adef08d3bdef092282614f3b683897cefae82ee3. For more info:...
Let's say we have the following module in a file `Foo.jl`: ```julia module Foo using LinearAlgebra bar(a, b) = a ⋅ b end ``` where `⋅` is `export`ed from LinearAlgebra.jl....