wbhart/Singular.jl

segmentation fault

Opened this issue · 2 comments

When trying to form Singular polynomials with rational coefficients,
I noticed that the following input causes a segmentation fault in Julia 0.6.2.

using Singular
R, vars = Singular.PolynomialRing( Singular.QQ, [ "x" ] )
x = vars[1]
divexact( x, 2 )

There was reference to currRing(global variable) instead of the given ring r(parameter)
in p_Divide.
Should be fixed with Singular/Singular@49c5220