Skip to content

Commit b49171b

Browse files
authored
Merge pull request #32 from ederc/docu-fixes
fixes types documentation
2 parents ad87504 + c797b47 commit b49171b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/src/types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ We use [Nemo](https://www.nemocas.org/index.html)'s multivariate polynomial
2626
ring structures:
2727

2828
```@repl
29+
using AlgebraicSolving
2930
R, (x,y,z) = polynomial_ring(QQ, ["x", "y", "z"], ordering=:degrevlex)
3031
```
3132
The above example defines a multivariate polynomial ring in three variables `x`,
@@ -34,6 +35,7 @@ for printing polynomials in the following. One can also define polynomial rings
3435
over finite fields:
3536

3637
```@repl
38+
using AlgebraicSolving
3739
R, (x,y,z) = polynomial_ring(GF(101), ["x", "y", "z"], ordering=:degrevlex)
3840
```
3941

@@ -44,6 +46,7 @@ data structures connected to ideals in order to make computational algebra more
4446
effective:
4547

4648
```@repl
49+
using AlgebraicSolving
4750
R, (x,y,z) = polynomial_ring(QQ, ["x", "y", "z"], ordering=:degrevlex)
4851
I = Ideal([x+y+1, y*z^2-13*y^2])
4952
```

0 commit comments

Comments
 (0)