Minor codding style fixes.

This commit is contained in:
Sébastien Crozet 2015-08-09 14:39:45 +02:00
parent a14393be43
commit 2091cd8da6

View File

@ -158,7 +158,6 @@ pub fn cholesky<N, V, VS, M>(m: &M) -> Result<M, &'static str>
for j in i + 1 .. out.ncols() {
out[(i, j)] = N::zero();
}
}
return Ok(out);