Function solveLU

Solve LUx = b

void solveLU(T, ulong N) (
  Matrix!(T,N) L,
  Matrix!(T,N) U,
  ref Vector!(T,N) x,
  Vector!(T,N) b
);