Re: [sage-devel] Re: how to use a singular lib

2018-11-23 Thread Daniel Krenn
On 2018-11-23 20:49, Simon King wrote: > Hi Daniel, > > On 2018-11-23, Daniel Krenn wrote: >> Singular is shipped with symodstd.lib (it contains an algorithm for >> computing a Groebner basis in a special case). >> How can I access it from within Sage? >> >> I looked up the code and coming from a

Re: [sage-devel] Re: how to use a singular lib

2018-11-23 Thread Daniel Krenn
On 2018-11-23 21:18, 'Martin R. Albrecht' via sage-devel wrote: > Indeed, this should work: > > _ = sage.libs.singular.function.lib("symodstd.lib") > syModStd = sage.libs.singular.function.singular_function("syModStd") Oh, this is easy. Thanks :) -- You received this message because you are sub

Re: [sage-devel] Re: how to use a singular lib

2018-11-23 Thread 'Martin R. Albrecht' via sage-devel
Indeed, this should work: _ = sage.libs.singular.function.lib("symodstd.lib") syModStd = sage.libs.singular.function.singular_function("syModStd") Simon King writes: > Hi Daniel, > > On 2018-11-23, Daniel Krenn wrote: >> Singular is shipped with symodstd.lib (it contains an algorithm for >> co

[sage-devel] Re: how to use a singular lib

2018-11-23 Thread Simon King
Hi Daniel, On 2018-11-23, Daniel Krenn wrote: > Singular is shipped with symodstd.lib (it contains an algorithm for > computing a Groebner basis in a special case). > How can I access it from within Sage? > > I looked up the code and coming from an ideal's groebner_basis method, > it is somehow c