Changeset fdca1c0 in git for Singular/structs.h


Ignore:
Timestamp:
Nov 13, 2000, 3:50:25 PM (24 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
dd01bf0ef5b6855f827f233d0f446456025e361f
Parents:
8b71d35b91a6790c4b65b60df30d05e8a9ed61a3
Message:
* levandov/hannes: preparations for HAVE_PLURAL
   (Makefile.in extra.cc pInline2.h structs.h gring.cc gring.h)


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

Legend:

Unmodified
Added
Removed
  • Singular/structs.h

    r8b71d3 rfdca1c0  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: structs.h,v 1.43 2000-10-30 13:40:27 obachman Exp $ */
     6/* $Id: structs.h,v 1.44 2000-11-13 14:50:25 levandov Exp $ */
    77/*
    88* ABSTRACT
     
    4343};
    4444
     45#ifdef HAVE_PLURAL
     46enum nc_type
     47{
     48  nc_general,
     49  nc_skew,
     50  nc_lie
     51};
     52#endif
    4553/* C++-part */
    4654#ifdef __cplusplus
     
    6977struct s_si_link_extension;
    7078struct reca;
     79#ifdef HAVE_PLURAL
     80struct nc_struct;
     81typedef struct nc_struct   nc_struct;
     82#endif
    7183typedef struct _ssubexpr   sSubexpr;
    7284typedef struct _sssym      ssym;
     
    241253  } data;
    242254};
     255
     256#ifdef HAVE_PLURAL
     257struct nc_struct
     258{
     259  nc_type type;
     260  matrix C;
     261  matrix D;
     262  matrix *MT;
     263  int *MTsize;
     264};
     265#endif
    243266
    244267struct sip_sring
     
    334357  pLDegProc     pLDeg;
    335358  p_SetmProc    p_Setm;
     359#ifdef HAVE_PLURAL
     360  nc_struct     *nc;
     361#endif
    336362};
    337363
Note: See TracChangeset for help on using the changeset viewer.