Changeset a830d2b in git


Ignore:
Timestamp:
Dec 10, 2003, 5:56:54 PM (20 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
f22093ec6e6bc0dccfa3a753a2ec46992bab0916
Parents:
752f86eedcf042968f429e397823aa2ebd7d95c0
Message:
* hannes: made aux functions extern available


git-svn-id: file:///usr/local/Singular/svn/trunk@6963 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
kernel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/ring.cc

    r752f86 ra830d2b  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.2 2003-12-10 16:28:03 Singular Exp $ */
     4/* $Id: ring.cc,v 1.3 2003-12-10 16:56:54 Singular Exp $ */
    55
    66/*
     
    6363
    6464// unconditionally deletes fields in r
    65 static void rDelete(ring r);
     65void rDelete(ring r);
    6666// set r->VarL_Size, r->VarL_Offset, r->VarL_LowIndex
    6767static void rSetVarL(ring r);
     
    149149
    150150// check intvec, describing the ordering
    151 static BOOLEAN rCheckIV(intvec *iv)
     151BOOLEAN rCheckIV(intvec *iv)
    152152{
    153153  if ((iv->length()!=2)&&(iv->length()!=3))
     
    159159}
    160160
    161 static int rTypeOfMatrixOrder(intvec * order)
     161int rTypeOfMatrixOrder(intvec * order)
    162162{
    163163  int i=0,j,typ=1;
     
    361361}
    362362
    363 static void rDelete(ring r)
     363void rDelete(ring r)
    364364{
    365365  int i, j;
  • kernel/ring.h

    r752f86 ra830d2b  
    77* ABSTRACT - the interpreter related ring operations
    88*/
    9 /* $Id: ring.h,v 1.1.1.1 2003-10-06 12:15:52 Singular Exp $ */
     9/* $Id: ring.h,v 1.2 2003-12-10 16:56:54 Singular Exp $ */
    1010
    1111/* includes */
     
    281281lists rDecompose(ring r);
    282282ring rCompose(lists  L);
    283 #endif
     283/////////////////////////////
     284// Auxillary functions
     285//
     286
     287BOOLEAN rCheckIV(intvec *iv);
     288int rTypeOfMatrixOrder(intvec * order);
     289void rDelete(ring r);
     290
     291#endif
Note: See TracChangeset for help on using the changeset viewer.