You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,9 @@ using TypedPolynomials
33
33
Once the algebraic set has been created, you can check whether it is zero-dimensional and if it is the case, you can get the finite number of elements of the set simply by iterating over it, or by using `collect` to transform it into an array containing the solutions.
34
34
```julia
35
35
V =@set y == x^2&& z == x^3
36
-
iszerodimensional(V) # should return false
36
+
is_zero_dimensional(V) # should return false
37
37
V =@set x^2+ x ==6&& y == x+1
38
-
iszerodimensional(V) # should return true
38
+
is_zero_dimensional(V) # should return true
39
39
collect(V) # should return [[2, 3], [-3, -2]]
40
40
```
41
41
The code sample above solves the system of algbraic equations by first
0 commit comments