Changeset b9ce2a in git


Ignore:
Timestamp:
Nov 25, 1999, 12:55:16 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
84db93fba13c44d7d8d1e4bec4087100282e073a
Parents:
663eb457e3f689e991f1443ba940088ea58e27a0
Message:
* added rRing_has_CompLastBlock


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

Legend:

Unmodified
Added
Removed
  • Singular/Makefile.in

    r663eb45 rb9ce2a  
    151151        primitiv.lib       random.lib         ring.lib           sing.lib    \
    152152        solve.lib          solver.lib         spcurve.lib        standard.lib\
    153         surf.lib           triang.lib         template.lib
     153        surf.lib           triang.lib         template.lib       spectrum.lib
    154154
    155155SLIBS_FILES = $(addprefix LIB/,${SLIBS})
  • Singular/ring.cc

    r663eb45 rb9ce2a  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.94 1999-11-23 15:25:37 Singular Exp $ */
     4/* $Id: ring.cc,v 1.95 1999-11-25 11:55:15 obachman Exp $ */
    55
    66/*
     
    35643564  return TRUE;
    35653565}
     3566
     3567BOOLEAN rRing_has_CompLastBlock(ring r)
     3568{
     3569  assume(r != NULL);
     3570  int lb = rBlocks(r) - 2;
     3571  return (r->order[lb] == ringorder_c || r->order[lb] == ringorder_C);
     3572}
     3573
  • Singular/ring.h

    r663eb45 rb9ce2a  
    77* ABSTRACT - the interpreter related ring operations
    88*/
    9 /* $Id: ring.h,v 1.44 1999-11-19 16:42:42 obachman Exp $ */
     9/* $Id: ring.h,v 1.45 1999-11-25 11:55:16 obachman Exp $ */
    1010
    1111/* includes */
     
    7070
    7171BOOLEAN rRing_is_Homog(ring r=currRing);
     72BOOLEAN rRing_has_CompLastBlock(ring r=currRing);
    7273
    7374inline BOOLEAN rField_is_Zp(ring r=currRing)
Note: See TracChangeset for help on using the changeset viewer.