remove else

This commit is contained in:
Jennifer Chukwu 2024-04-22 19:00:44 +00:00
parent a0da49fb83
commit c21df4e1a3
1 changed files with 93 additions and 94 deletions

View File

@ -180,7 +180,7 @@ where
if det.is_zero() {
return false;
} else {
}
out[(0, 0)] = cofactor00;
out[(2, 0)] = m[1].clone() * m[6].clone() * m[15].clone()
@ -275,4 +275,3 @@ where
}
true
}
}