Changeset e10683 in git for Singular/polys.h


Ignore:
Timestamp:
Nov 30, 2000, 5:46:09 PM (23 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
379305282702a4d34d62437d3dfe5bf09925c710
Parents:
50268a871f223956bed4c2b84352e38f543a574b
Message:
*hannes: pmInit stuff


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

Legend:

Unmodified
Added
Removed
  • Singular/polys.h

    r50268a re10683  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: polys.h,v 1.47 2000-11-23 17:40:02 Singular Exp $ */
     6/* $Id: polys.h,v 1.48 2000-11-30 16:46:08 Singular Exp $ */
    77/*
    88* ABSTRACT - all basic methods to manipulate polynomials of the
     
    2020          - debugging only if PDEBUG >= 2
    2121          - normally inlined, unless PDEBUG >= 2 || NO_INLINE2
    22  Level 1: operations on monomials with time proportional to length 
     22 Level 1: operations on monomials with time proportional to length
    2323          - implemented in: pInline1.h
    2424          - debugging only if PDEBUG >= 1
    25           - normally inlined, unless PDEBUG >= 1 || NO_INLINE1 
     25          - normally inlined, unless PDEBUG >= 1 || NO_INLINE1
    2626 Level 0: short operations on polynomials with time proportional to
    2727          length of poly
     
    3131            #define DO_PINLINE0
    3232            #include "pInline0.h"
    33  Misc   : operations on polynomials which do not fit in any of the 
     33 Misc   : operations on polynomials which do not fit in any of the
    3434          above categories
    3535          - implemented in: polys*.cc
     
    4242 However, PDEBUG will only be in effect, if !NDEBUG.
    4343
    44  All p_* operations take as last argument a ring 
    45  and are ring independent. Their corresponding p* operations are usually 
     44 All p_* operations take as last argument a ring
     45 and are ring independent. Their corresponding p* operations are usually
    4646 just macros to the respective p_*(..,currRing).
    4747
     
    6262#define pSetOrder(p, o)     p_SetOrder(p, o, currRing)
    6363
    64 // Component 
     64// Component
    6565#define pGetComp(p)         _p_GetComp(p, currRing)
    6666#define pSetComp(p,v)       p_SetComp(p,v, currRing)
     
    8383/***************************************************************
    8484 *
    85  * Allocation/Initalization/Deletion 
     85 * Allocation/Initalization/Deletion
    8686 * except for pDeleteLm and pHead, all polys must be != NULL
    8787 *
     
    9191// allocates a new monomial and initializes everything to 0
    9292#define pInit()         p_Init(currRing)
    93 // like pInit, except that expvector is initialized to that of p, 
     93// like pInit, except that expvector is initialized to that of p,
    9494// p must be != NULL
    9595#define pLmInit(p)  p_LmInit(p, currRing)
    96 // returns newly allocated copy of Lm(p), coef is copied, next=NULL, 
     96// returns newly allocated copy of Lm(p), coef is copied, next=NULL,
    9797// p might be NULL
    9898#define pHead(p)        p_Head(p, currRing)
    99 // if *p_ptr != NULL, delete p_ptr->coef, *p_ptr, and set *p_ptr to 
     99// if *p_ptr != NULL, delete p_ptr->coef, *p_ptr, and set *p_ptr to
    100100// pNext(*p_ptr)
    101101static inline void pDeleteLm(poly *p) {p_DeleteLm(p, currRing);}
     
    155155#define pCmp(p1, p2)    p_Cmp(p1, p2, currRing)
    156156
    157  
    158 /***************************************************************
    159  *
    160  * Divisiblity tests, args must be != NULL, except for 
     157
     158/***************************************************************
     159 *
     160 * Divisiblity tests, args must be != NULL, except for
    161161 * pDivisbleBy
    162162 *
    163163 ***************************************************************/
    164164// returns TRUE, if leading monom of a divides leading monom of b
    165 // i.e., if there exists a expvector c > 0, s.t. b = a + c; 
     165// i.e., if there exists a expvector c > 0, s.t. b = a + c;
    166166#define pDivisibleBy(a, b)  p_DivisibleBy(a,b,currRing)
    167167// like pDivisibleBy, except that it is assumed that a!=NULL, b!=NULL
     
    282282
    283283
    284 poly      pmInit(char *s, BOOLEAN &ok);   /* monom -> poly */
     284poly      pmInit(char *s, BOOLEAN &ok);     /* monom -> poly, interpreter */
     285char *    p_Read(char *s, poly &p, ring r); /* monom -> poly */
    285286void      ppDelete(poly * a, ring r);
    286287
     
    301302int pMaxCompProc(poly p);
    302303
    303 #define   pOneComp(p)       p_OneComp(p, currRing) 
     304#define   pOneComp(p)       p_OneComp(p, currRing)
    304305#define   pSetCompP(a,i)    p_SetCompP(a, i, currRing)
    305306
Note: See TracChangeset for help on using the changeset viewer.