Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#426 closed bug (wontfix)

incorrect output of the first matrix in mres

Reported by: anonymous Owned by: somebody
Priority: minor Milestone: 3-1-5 and higher
Component: dontKnow Version: 3-1-4
Keywords: Cc:

Description (last modified by hannes)

The example

ring R = 0,(x(1..4)),dp;
resolution mr = mres(maxideal(1),0);
typeof(mr[1]);
matrix M = mr[1];
M;

should be written as

ring R = 0,(x(1..4)),dp;
resolution mr = mres(maxideal(1),0);
typeof(mr[1]);
matrix M = matrix(mr[1]);
M;

option(warn); may help in such cases.

Change History (3)

comment:1 Changed 11 years ago by hannes

Please provide an example.

comment:2 Changed 11 years ago by hannes

Description: modified (diff)
Resolution: wontfix
Status: newclosed

comment:3 Changed 11 years ago by hannes

Description: modified (diff)
Note: See TracTickets for help on using tickets.