Changeset c232af in git for Singular/structs.h


Ignore:
Timestamp:
Aug 14, 2000, 2:58:28 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
d26c2e9dd38f1531c0e77c38e6177109182b5bca
Parents:
4697a8a1ccbf49d0048033ea29c651e3966ba729
Message:
* omalloc stuff


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

Legend:

Unmodified
Added
Removed
  • Singular/structs.h

    r4697a8a rc232af  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: structs.h,v 1.31 2000-02-10 16:09:04 Singular Exp $ */
     6/* $Id: structs.h,v 1.32 2000-08-14 12:56:52 obachman Exp $ */
    77/*
    88* ABSTRACT
     
    7676struct s_si_link_extension;
    7777struct reca;
    78 struct sip_memHeap;
    79 struct sip_memHeapPage;
    8078typedef struct _ssubexpr   sSubexpr;
    8179typedef struct _sssym      ssym;
     
    8886typedef struct sip_command ip_command;
    8987typedef struct sip_package ip_package;
    90 typedef struct sip_memHeap ip_memHeap;
    9188
    9289/* the pointer types */
     
    107104typedef struct s_si_link_extension *si_link_extension;
    108105typedef struct reca *      alg;
    109 typedef struct sip_memHeap * memHeap;
    110 typedef struct sip_memHeapPage * memHeapPage;
    111106
    112107
     
    226221typedef struct sro_syz sro_syz;
    227222
     223#ifndef OM_ALLOC_H
     224struct omBin_s;
     225#endif
     226
    228227struct sro_ord
    229228{
     
    272271#endif
    273272
    274   memHeap   mm_specHeap; /* Heap from where monoms are allocated */
     273  struct omBin_s*   PolyBin; /* Bin from where monoms are allocated */
    275274  short      ch;     /* characteristic */
    276275  short      ch_flags; /* additional char-flags */
     
    381380#endif /* HAVE_LIBPARSER */
    382381
    383 #if HAVE_ASO == 1
    384 #include "structs.aso"
    385 #endif
    386 
    387 #endif
    388 
     382extern struct omBin_s* MP_INT_bin;
     383extern struct omBin_s* char_ptr_bin;
     384extern struct omBin_s* ideal_bin;
     385extern struct omBin_s* int_bin;
     386extern struct omBin_s* poly_bin;
     387extern struct omBin_s* void_ptr_bin;
     388extern struct omBin_s* indlist_bin;
     389extern struct omBin_s* naIdeal_bin;
     390extern struct omBin_s* snaIdeal_bin;
     391extern struct omBin_s* sm_prec_bin;
     392extern struct omBin_s* smprec_bin;
     393extern struct omBin_s* sip_sideal_bin;
     394extern struct omBin_s* sip_smap_bin;
     395extern struct omBin_s* sip_sring_bin;
     396extern struct omBin_s* ip_sideal_bin;
     397extern struct omBin_s* ip_smap_bin;
     398extern struct omBin_s* ip_sring_bin;
     399
     400#endif
     401
Note: See TracChangeset for help on using the changeset viewer.