Changeset b9ce2a in git
- Timestamp:
- Nov 25, 1999, 12:55:16 PM (24 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 84db93fba13c44d7d8d1e4bec4087100282e073a
- Parents:
- 663eb457e3f689e991f1443ba940088ea58e27a0
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.in
r663eb45 rb9ce2a 151 151 primitiv.lib random.lib ring.lib sing.lib \ 152 152 solve.lib solver.lib spcurve.lib standard.lib\ 153 surf.lib triang.lib template.lib 153 surf.lib triang.lib template.lib spectrum.lib 154 154 155 155 SLIBS_FILES = $(addprefix LIB/,${SLIBS}) -
Singular/ring.cc
r663eb45 rb9ce2a 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.9 4 1999-11-23 15:25:37 SingularExp $ */4 /* $Id: ring.cc,v 1.95 1999-11-25 11:55:15 obachman Exp $ */ 5 5 6 6 /* … … 3564 3564 return TRUE; 3565 3565 } 3566 3567 BOOLEAN 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 7 7 * ABSTRACT - the interpreter related ring operations 8 8 */ 9 /* $Id: ring.h,v 1.4 4 1999-11-19 16:42:42obachman Exp $ */9 /* $Id: ring.h,v 1.45 1999-11-25 11:55:16 obachman Exp $ */ 10 10 11 11 /* includes */ … … 70 70 71 71 BOOLEAN rRing_is_Homog(ring r=currRing); 72 BOOLEAN rRing_has_CompLastBlock(ring r=currRing); 72 73 73 74 inline BOOLEAN rField_is_Zp(ring r=currRing)
Note: See TracChangeset
for help on using the changeset viewer.