Changeset a49a36 in git
- Timestamp:
- Dec 14, 2010, 12:26:40 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- ab5b77f9e4845c4931341d1ae2da855f56b7b706
- Parents:
- 51386e9e05019be2d8730e2252d071f6be90626b
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/bigintm.cc
r51386e9 ra49a36 2 2 #include <Singular/ipid.h> 3 3 #include <Singular/blackbox.h> 4 #include <omalloc/omalloc.h> 5 #include <kernel/febase.h> 6 #include <kernel/longrat.h> 7 #include <Singular/subexpr.h> 4 8 #include <Singular/bigintm.h> 9 10 // as this is only a demo, 11 // we do not included compiled code: 12 #if 1 13 char * bigintm_String(blackbox *b, void *d); 14 void * bigintm_Copy(blackbox*b, void *d); 15 BOOLEAN bigintm_Assign(leftv l, leftv r); 16 BOOLEAN bigintm_Op2(int op, leftv res, leftv a1, leftv a2); 17 BOOLEAN bigintm_OpM(int op, leftv res, leftv args); 18 void bigintm_destroy(blackbox *b, void *d); 5 19 6 20 void bigintm_setup() … … 143 157 } 144 158 } 145 159 #endif -
Singular/bigintm.h
r51386e9 ra49a36 1 1 #ifndef BIGINTM_H 2 2 #define BIGINTM_H 3 #include <Singular/blackbox.h>4 #include <omalloc/omalloc.h>5 #include <kernel/febase.h>6 #include <kernel/longrat.h>7 #include <Singular/subexpr.h>8 3 9 4 void bigintm_setup(); 10 5 11 char * bigintm_String(blackbox *b, void *d);12 void * bigintm_Copy(blackbox*b, void *d);13 BOOLEAN bigintm_Assign(leftv l, leftv r);14 BOOLEAN bigintm_Op2(int op, leftv res, leftv a1, leftv a2);15 BOOLEAN bigintm_OpM(int op, leftv res, leftv args);16 void bigintm_destroy(blackbox *b, void *d);17 6 #endif
Note: See TracChangeset
for help on using the changeset viewer.