pub fn half_eea<R>(a: El<R>, b: El<R>, ring: R) -> (El<R>, El<R>)
Available on crate feature
unstable-enable
only.Expand description
Computes the gcd d
of a
and b
, together with “half a Bezout identity”, i.e.
some s
such that s * a = d mod b
.
For details, see eea()
.
§Availability
This API is marked as unstable and is only available when the unstable-enable
crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.