hiemstar
hiemstar
Do you have plans to support A(i,j,l) = B(i,j,k) * inv(C(k,l)) given a LU-factorization of the dense/sparse matrix C?
Modified internal constructor of BinaryHeap: function BinaryHeap{T,Comp}(::Comp, xs::AbstractVector{T}) where {T,Comp} valtree = _make_binary_heap(Comp(), T, xs) new{T,Comp}(Comp(), valtree) end to function BinaryHeap{T,Comp}(comp::Comp, xs::AbstractVector{T}) where {T,Comp} valtree = _make_binary_heap(comp, T, xs) new{T,Comp}(comp,...
I get the following error at BoundedVoronoi.cs, line 120, after using the simple smoother functionality. System.NullReferenceException: 'Object reference not set to an instance of an object.' e1.twin was null. Does...
This might be interesting to look at in order to generate more complicated tensor expressions: http://tensor-compiler.org/
The content of the suggested Overrides.toml is not correct. I was getting an init-error, see [discourse.julialang](https://discourse.julialang.org/t/initerror-could-not-load-library-libcxxwrap-julia-stl-dll-on-windows/74535). The solution of the issue is also there. It would be good to update...
When I solve for multiple right-hand-sides I get an incorrect result after the first solve. See the following MWE: ``` using MUMPS using MPI using LinearAlgebra using SparseArrays MPI.Init() icntl...