Opened 11 years ago

Closed 11 years ago

#428 closed proposed feature (wontfix)

std bit not set properly

Reported by: vinay_wagh@… Owned by: somebody
Priority: minor Milestone: 3-1-4 and higher
Component: singular-kernel Version: 3-1-3
Keywords: std Cc:

Description

Is is possible to set the "std" bit to the ideal I when I do I = std(f,g); ? For example:

The following code gives a warning _ is no standard basis I = std(f,g); reduce(x,I);

Whereas the following code, which means the same thing, does not give the warning: I = f,g; I = std(I); reduce(x,I);

Change History (1)

comment:1 Changed 11 years ago by hannes

Resolution: wontfix
Status: newclosed

std(f,g) for f and g being polynomials can be:

std(ideal(f,g));
or
std(ideal(f),g);

The first case is probably meant, and works without warning, the second requires ideal(f) to be a standard basis, which results in a warning (and it should, as this is probably not true in rings with zero-divisors)

Note: See TracTickets for help on using tickets.