Changes between Initial Version and Version 2 of Ticket #581
- Timestamp:
- Feb 26, 2014, 1:06:01 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #581
- Property Keywords exterior algebra added
- Property Owner changed from somebody to Oleksandr
-
Property
Component
changed from
dontKnow
tosingular-kernel
-
Ticket #581 – Description
initial v2 1 1 The following example: 2 2 3 {{{ 3 4 option(noredefine);option(redSB); LIB "matrix.lib"; 4 5 ring r = (0),(e0,e1,e2,e3),dp; … … 8 9 matrix M[1][4] = e1*e2*e3,e0*e2*e3,e0*e1*e3,e0*e1*e2; 9 10 nres(M,2); 10 11 }}} 11 12 12 13 causes on my Mac the following warnings: 13 14 15 {{{ 14 16 // ***dError: assume violation at kutil.cc:7169 condition: p.FDeg == p.pFDeg() 15 17 // ***dError: assume violation at ../kernel/kInline.h:412 condition: FDeg == this->pFDeg() … … 20 22 // ***dError: T[3] FDeg error: has 4, specified to have 1 21 23 // ***dError: assume violation at sca.cc:798 condition: kTest_TS(strat) 24 }}} 22 25 23 26 The warnings do not appear on a Linux machine. Here is the output of Singular --version 24 27 28 {{{ 25 29 Singular for x86_64-Darwin version 4.0.0 (4.0.0, 64 bit) Jan 22 2014 15:55:40 #14086c2 26 30 with … … 34 38 LDFLAGS : -L/sw/lib -pipe -fno-common -DOM_NDEBUG -DNDEBUG -O3 -Wno-unused-function -Wno-trigraphs -Wno-unused-parameter -Wno-unused-variable -fomit-frame-pointer -fwrapv -fvisibility=default -finline-functions -fno-exceptions -fno-rtti -fno-threadsafe-statics -funroll-loops -Qunused-arguments -rdynamic -flat_namespace -Wl,-bind_at_load -Wl,-undefined,dynamic_lookup,LIBS : -lreadline -lncurses -lpthread (ver: 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)) 35 39 argv[0] : Singular 36 37 38 40 }}}