Module type Polynomial.Univariate

module type Univariate = sig .. end
Signature of univariate polynmials

include Linear.Vector
val order : t -> int
val mul : t -> t -> t
val one : t
val scalar : scalar -> t
val compose : t -> t -> t
val identity : t
The polynomial p(x) = x
val eval : t -> scalar -> scalar
val exp : t -> int -> t
Exponentiation