Skip to content

Commit ab5c8d4

Browse files
committed
adds normalize keyword
1 parent 142d1f2 commit ab5c8d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/algorithms/groebner-bases.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ function eliminate(
6161
max_nr_pairs=max_nr_pairs, la_option=la_option,
6262
eliminate=eliminate, intersect=intersect,
6363
complete_reduction=complete_reduction,
64+
normalize = normalize,
6465
info_level=info_level)
6566
end
6667
end
@@ -125,6 +126,7 @@ function groebner_basis(
125126
max_nr_pairs = max_nr_pairs, la_option = la_option,
126127
eliminate = eliminate, intersect = intersect,
127128
complete_reduction = complete_reduction,
129+
normalize = normalize,
128130
info_level = info_level)
129131
end
130132
end
@@ -215,7 +217,7 @@ rr = Libdl.dlsym(msv, :export_groebner_qq)
215217
# convert to basis
216218
if field_char == 0
217219
basis = _convert_rational_array_to_abstract_algebra(
218-
jl_ld, jl_len, jl_cf, jl_exp, R, eliminate)
220+
jl_ld, jl_len, jl_cf, jl_exp, R, normalize, eliminate)
219221
else
220222
basis = _convert_finite_field_array_to_abstract_algebra(
221223
jl_ld, jl_len, jl_cf, jl_exp, R, eliminate)

0 commit comments

Comments
 (0)