HornerResult constructor

const HornerResult(
  1. List<Complex> polynomial,
  2. Complex value
)

Requires list of newly evaluated coefficients (polynomial) and the estimated "distance" from the root (value).

Implementation

const HornerResult(this.polynomial, this.value);