Changeset a49a36 in git for Singular/bigintm.cc


Ignore:
Timestamp:
Dec 14, 2010, 12:26:40 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
ab5b77f9e4845c4931341d1ae2da855f56b7b706
Parents:
51386e9e05019be2d8730e2252d071f6be90626b
Message:
bigintm: is example code only

git-svn-id: file:///usr/local/Singular/svn/trunk@13768 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/bigintm.cc

    r51386e9 ra49a36  
    22#include <Singular/ipid.h>
    33#include <Singular/blackbox.h>
     4#include <omalloc/omalloc.h>
     5#include <kernel/febase.h>
     6#include <kernel/longrat.h>
     7#include <Singular/subexpr.h>
    48#include <Singular/bigintm.h>
     9
     10// as this is only a demo,
     11// we do not included compiled code:
     12#if 1
     13char * bigintm_String(blackbox *b, void *d);
     14void * bigintm_Copy(blackbox*b, void *d);
     15BOOLEAN bigintm_Assign(leftv l, leftv r);
     16BOOLEAN bigintm_Op2(int op, leftv res, leftv a1, leftv a2);
     17BOOLEAN bigintm_OpM(int op, leftv res, leftv args);
     18void bigintm_destroy(blackbox *b, void *d);
    519
    620void bigintm_setup()
     
    143157  }
    144158}
    145 
     159#endif
Note: See TracChangeset for help on using the changeset viewer.