Skip to content

Commit 8258457

Browse files
committed
lets rational_parametrization only compute the rational parametrization and no longer perform real root isolation
1 parent 6719e08 commit 8258457

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/algorithms/solvers.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ function _core_msolve(
5959
max_nr_pairs::Int=0, # number of pairs maximally chosen
6060
# in symbolic preprocessing
6161
la_option::Int=2, # linear algebra option
62+
get_param::Int=1, # get rational parametrization
6263
info_level::Int=0, # info level for print outs
6364
precision::Int=32 # precision of the solution set
6465
)
@@ -76,7 +77,6 @@ function _core_msolve(
7677

7778
reset_ht = 0
7879
print_gb = 0
79-
get_param = 1
8080

8181
mon_order = 0
8282
elim_block_size = 0
@@ -253,6 +253,7 @@ function rational_parametrization(
253253
max_nr_pairs = max_nr_pairs,
254254
la_option = la_option,
255255
info_level = info_level,
256+
get_param = 2, # only rational parametrization, no solutions are computed
256257
precision = precision)
257258

258259
return I.rat_param

0 commit comments

Comments
 (0)