[BACK]Return to cmotag.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / plugin

Annotation of OpenXM/src/kan96xx/plugin/cmotag.h, Revision 1.7

1.7     ! takayama    1: /* $OpenXM: OpenXM/src/kan96xx/plugin/cmotag.h,v 1.6 2020/10/04 03:14:07 noro Exp $ */
1.1       maekawa     2: /*  cmotag.h */
                      3: /* Never Use 0 as a CMO tag. */
1.5       takayama    4: /* If you add new CMO_*,
                      5:    you need to make changes following the comment of cmo.c
                      6:    and modify the two files:
                      7:    OpenXM/doc/OpenXM-web/cmotag.h
1.7     ! takayama    8:    OpenXM/doc/OpenXM-specs/?*.tex
1.5       takayama    9: */
1.6       noro       10: #include <string.h>
                     11:
1.5       takayama   12: #define LARGEID   0x7f000000    /* 2130706432 */
                     13: #define CMO_PRIVATE 0x7fff0000  /* 2147418112 */
1.1       maekawa    14: #define CMO_ERROR  (LARGEID+1)
                     15: #define CMO_ERROR2 (LARGEID+2)
                     16: #define CMO_NULL   1
                     17: #define CMO_INT32  2
                     18: #define CMO_DATUM  3
                     19: #define CMO_STRING 4
                     20: #define CMO_MATHCAP 5
                     21:
1.3       takayama   22: #define     CMO_ARRAY  16
1.1       maekawa    23: #define     CMO_LIST 17
1.4       takayama   24: #define     CMO_ATOM 18
1.1       maekawa    25: #define     CMO_MONOMIAL32  19
                     26: /* #define     CMO_ZZ_OLD      20  */
                     27: #define     CMO_ZZ_OLD      -20
                     28: #define     CMO_QQ          21
                     29: #define     CMO_ZERO        22
                     30: #define     CMO_DMS          23   /* Distributed monomial system */
                     31: #define     CMO_DMS_GENERIC     24
                     32: #define     CMO_DMS_OF_N_VARIABLES 25
                     33: #define     CMO_RING_BY_NAME  26
                     34: #define     CMO_RECURSIVE_POLYNOMIAL 27
                     35: #define     CMO_LIST_R   28
                     36: #define     CMO_INT32COEFF  30
                     37: #define     CMO_DISTRIBUTED_POLYNOMIAL 31
                     38: /* #define     CMO_ZZ   32  */
                     39: #define     CMO_ZZ      20
                     40: #define     CMO_POLYNOMIAL_IN_ONE_VARIABLE 33
                     41: #define     CMO_RATIONAL 34
                     42:
                     43: #define     CMO_64BIT_MACHINE_DOUBLE   40
                     44: #define     CMO_ARRAY_OF_64BIT_MACHINE_DOUBLE  41
                     45: #define     CMO_128BIT_MACHINE_DOUBLE   42
                     46: #define     CMO_ARRAY_OF_128BIT_MACHINE_DOUBLE  43
                     47:
                     48: #define     CMO_BIGFLOAT    50
                     49: #define     CMO_IEEE_DOUBLE_FLOAT 51
                     50:
                     51: #define     CMO_INDETERMINATE  60
                     52: #define     CMO_TREE           61
                     53: #define     CMO_LAMBDA         62    /* for function definition */
                     54:
1.3       takayama   55:
                     56: #define CMO_START_SIGNATURE    0x7fabcd03
                     57: #define CMO_LOCAL_OBJECT       0x7fcdef03
                     58: #define CMO_LOCAL_OBJECT_ASIR  (CMO_LOCAL_OBJECT+0)
                     59: #define CMO_LOCAL_OBJECT_SM1  (CMO_LOCAL_OBJECT+1)
                     60:
1.1       maekawa    61: /* end of cmotag.h */
                     62:
1.3       takayama   63: /* #define     CMO   1024  It is defined in stackm.h. */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>