The following code works
julia> rows = [1, 2, 3, 4]; cols = [1, 2, 3, 4]; vals = ones(4);
julia> qrm_spmat_init(2, 2, rows, cols, vals)
Sparse matrix -- qrm_spmat of size (2, 2) with 4 nonzeros.
but shouldn’t.
Where should the argument check happen? In Julia or in Fortran?
@abuttari