This commit is contained in:
Quaternions 2024-08-29 15:27:48 -07:00
parent 67c30b8535
commit 8d5fc1ae48

View File

@ -54,3 +54,8 @@ fn test_sqrt_exact(){
test_exact(n);
}
}
#[test]
fn test_sqrt_max(){
let a=I32F32::MAX;
test_exact(a);
}