I created a [test case](https://github.com/farmaazon/roots-rs/blob/bug/src/analytical/quartic.rs#L277) for `find_roots_quartic` where it should return two roots according to [wolfram](https://www.wolframalpha.com/input?i=0.017350271707711872+x%5E4++-0.18749033492394002+x%5E3+%2B+0.7583062280164483+x%5E2++-1.3604570650442296+x+%2B+0.007953582308820706), but returns none. Is this something I should expect from numerical errors? If yes, what would be a better method to solve such an equation?
I created a test case for
find_roots_quarticwhere it should return two roots according to wolfram, but returns none.Is this something I should expect from numerical errors? If yes, what would be a better method to solve such an equation?