Skip to content

Commit 1526685

Browse files
committed
update README
1 parent 8df043d commit 1526685

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To get back to the Julia REPL, press backspace.
1919
```julia
2020
using DecomposingPolynomialSystems
2121
@var x[1:2] p[1:2]
22-
F = System([x[1]^2 - x[2]^2 - p[1], 2*x[1]*x[2] - p[2]]; variables=x, parameters=p)
22+
F = ParametricSystem([x[1]^2 - x[2]^2 - p[1], 2*x[1]*x[2] - p[2]]; unknowns=x, parameters=p)
2323
symmetries_fixing_parameters(F; degree_bound=1, param_dep=false)
2424
```
2525
The result of the last command is the object of type `DeckTransformationGroup` that contains 4 deck transformations acting on the unknowns `x₁`, `x₂` of the polynomial system `F`:
@@ -41,7 +41,5 @@ DeckTransformationGroup of order 4
4141
x₂ ↦ im*x₁
4242
```
4343
where `im` is the imaginary unit.
44-
### Computing invariants
45-
TBW
46-
### Decomposition
44+
### Computing decomposing maps
4745
TBW

0 commit comments

Comments
 (0)