I'm trying to run swix in Swift 4. I've solved most of the initial issues that came up but there's one left I don't know enough about to resolve. It's three instances of the same error, see code bellow
var nc = __CLPK_integer(N)
dgetrf_(&nc, &nc, !y, &nc, &ipiv, &info)
Overlapping accesses to 'nc', but modification requires exclusive access; consider copying to a local variable
Any idea on how I can resolve this?