Ian McInerney
Ian McInerney
When Caja is opened with caja-terminal enabled in Fedora 26, the bash processes for the terminal doen't get killed when the directory changes in Caja and the terminal updates. This...
When configuring using Meson, the warning: ``` WARNING: Project specifies a minimum meson_version '>=0.37.0' but uses features which were added in newer versions: * 0.50.0: {'install arg in configure_file'} ```...
Using an automatic solver to solve this sample problem does not allow for the compiler to infer the type of `sol1` or `sol2` at all. ```julia using DifferentialEquations function lorenz!(du,u,p,t)...
The recent wx 3.1.6 release has now deprecated the version of `wxFileName::Normalize()` when no flags are passed into it (done in https://github.com/wxWidgets/wxWidgets/pull/2428). Now wx wants callers to specify the flags...
When using the generic fallback functions provided by LinearAlgebra, `BlockArray` type matrices don't work properly. I'm not sure what the best way of handling this would be, but I guess...
The scalar elements on the diagonals of arrays can be accessed using `diagind` (https://docs.julialang.org/en/v1/stdlib/LinearAlgebra/#LinearAlgebra.diagind) to get the `AbstractRange` of an entire diagonal and operate on it (e.g. doing `D[diagind( D,...
This changeset cleans up the existing custom memory and printing code to remove the additional two headers that were added, and instead include it from existing headers. This allows for...
Update the QDLDL version to the recently released version, and make it so that we only enable the object library target and not the shared/static libraries or the demo executable...
There were no codegen tests handling unconstrained problems before, so I have added some. This exposed some errors in how the data was written out (that caused problems both at...
This adds the calls to the BLAS level 2 MKL sparse operations for the MKL backend. It turns out that the only operations it really implements that we use are...