solutions method

  1. @override
List<Complex> solutions()
override

Finds the roots (the solutions) of the associated P(x) = 0 equation.

Implementation

@override
List<Complex> solutions() => [b.negate / a];