Skip to content

Commit

Permalink
add a couple of benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
Sasha Demin committed Oct 12, 2023
1 parent 7b4b786 commit 71c41e8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions benchmark/symbolicdata.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# https://symbolicdata.github.io/PolynomialSystems
# https://github.com/symbolicdata/data

using Nemo

###
Expand Down Expand Up @@ -43,3 +46,16 @@ system = [
]

@time ParamPunPam.paramgb(system)

###
# source: https://github.com/symbolicdata/data/blob/master/XMLResources/IntPS/Vermeer.xml

using Groebner
R, (w, v, u, y, x) = PolynomialRing(QQ, [:w, :v, :u, :y, :x])
system = [
v^2 + u^2 - 2 * v * y + y^2 - 2 * u * x + x^2 - 1,
-u^3 + v^2,
-3 * v * u^2 + 3 * u^2 * y - 2 * v * u + 2 * v * x,
6 * w^2 * v * u^2 - 3 * w * u^2 - 2 * w * v + 1
]
@time groebner(system);

0 comments on commit 71c41e8

Please sign in to comment.