Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Co-authored-by: Pierre Roux <[email protected]>
  • Loading branch information
pi8027 and proux01 committed Oct 11, 2023
1 parent 4bf81eb commit 892c683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ applications of (semi)ring homomorphisms and additive functions (N-module or
Z-module homomorphisms).
For example, suppose `f : S -> T` and `g : R -> S` are ring homomorphisms. The
preprocessor turns a ring sub-expression of the form `f (x + g (y * z))` into
`f x + f (g y) + f (g z)`.
`f x + f (g y) * f (g z)`.
A composition of homomorphisms from the initial objects `nat`, `N`, `int`, and
`Z` is automatically normalized to the canonical one. For example, if `R` in
the above example is `int`, the result of the preprocessing should be
Expand Down Expand Up @@ -126,7 +126,6 @@ constructs apart from homomorphism applications:
- `expn`,[^constant_exponent]
- `N.pow`,[^constant_exponent]
- `Z.pow`,[^constant_exponent]
- `GRing.inv`,
- `S`,
- `Posz`,
- `Negz`, and
Expand Down
3 changes: 1 addition & 2 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ documentation: |-
Z-module homomorphisms).
For example, suppose `f : S -> T` and `g : R -> S` are ring homomorphisms. The
preprocessor turns a ring sub-expression of the form `f (x + g (y * z))` into
`f x + f (g y) + f (g z)`.
`f x + f (g y) * f (g z)`.
A composition of homomorphisms from the initial objects `nat`, `N`, `int`, and
`Z` is automatically normalized to the canonical one. For example, if `R` in
the above example is `int`, the result of the preprocessing should be
Expand Down Expand Up @@ -151,7 +151,6 @@ documentation: |-
- `expn`,[^constant_exponent]
- `N.pow`,[^constant_exponent]
- `Z.pow`,[^constant_exponent]
- `GRing.inv`,
- `S`,
- `Posz`,
- `Negz`, and
Expand Down

0 comments on commit 892c683

Please sign in to comment.