zeroes2 inline maybe

This commit is contained in:
Quaternions 2023-09-22 15:21:59 -07:00
parent eafcbae677
commit a803ada0e4

View File

@ -1,4 +1,5 @@
//find roots of polynomials
#[inline]
pub fn zeroes2(a0:f32,a1:f32,a2:f32) -> Vec<f32>{
if a2==0f32{
return zeroes1(a0, a1);