Avatar
spasm_triplet *spasm_triplet_alloc(int n, int m, int nzmax, int prime, int with_values) { これを let (n, m): (Int, Int) = size let nnz: Int = components.count let Atrip = spasm_triplet_alloc(n, m, nnz, 2, 1) // Cannot convert value of type 'Int' to expected argument type 'Int32' とエラーが出ているので、 C の intInt32 になってるのかと思いました。 (edited)