algebra icon indicating copy to clipboard operation
algebra copied to clipboard

Integrate intermediate steps between `CommutativeRing` and `Field`

Open denisrosset opened this issue 5 years ago • 1 comments

Right now, spire has a finer grained distinction of commutative rings, namely:

  • the availability of gcd and lcm operations,
  • the availability of Euclidean division (emod, equot),

in the type classes GCDRing and EuclideanRing. As the corresponding operations are already part of the Java/Scala API for e.g. integers, it would be natural to include them in algebra. The corresponding type classes are pretty uncontroversial and map to the mathematical hierarchy.

Another step in the hierarchy, UniqueFactorizationDomain relates to the availability of factorization into prime elements. There, the API is less clear. For various reasons, this type class is present outside the ring hierarchy in Spire, and I suggest it is not included in algebra.

(There is also the story of Signed -- for abs -- and TruncatedDivision, but that should be discussed separately)

denisrosset avatar Jun 20 '19 16:06 denisrosset

See #246 and #247

denisrosset avatar May 14 '21 15:05 denisrosset