Changeset 9f9b9a1 in git
- Timestamp:
- Dec 5, 2000, 1:14:33 PM (23 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- f5d749d38c446f41bbcbb94c4d426b74c3fec4ee
- Parents:
- a5189bc0c3a81e46d3450fdaaeff50a529e8a5b7
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/pInline2.h
ra5189b r9f9b9a1 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 8/00 9 * Version: $Id: pInline2.h,v 1.2 0 2000-12-01 14:06:31 SingularExp $9 * Version: $Id: pInline2.h,v 1.21 2000-12-05 12:14:32 obachman Exp $ 10 10 *******************************************************************/ 11 11 #ifndef PINLINE2_H … … 520 520 if (pNext(p) == NULL) 521 521 { 522 #ifndef HAVE_PLURAL 523 q = r->p_Procs->p_Mult_mm(q, p, r); 524 #else /* PLURAL */ 525 q = r->p_Procs->nc_mm_Mult_p(p, q, r); 526 #endif 522 #ifdef HAVE_PLURAL 523 if (rIsPluralRing(r)) 524 q = r->p_Procs->nc_mm_Mult_p(p, q, r); 525 else 526 #endif HAVE_PLURAL 527 q = r->p_Procs->p_Mult_mm(q, p, r); 528 527 529 r->p_Procs->p_Delete(&p, r); 528 530 return q; -
Singular/ring.h
ra5189b r9f9b9a1 7 7 * ABSTRACT - the interpreter related ring operations 8 8 */ 9 /* $Id: ring.h,v 1.5 8 2000-11-25 13:02:44 SingularExp $ */9 /* $Id: ring.h,v 1.59 2000-12-05 12:14:33 obachman Exp $ */ 10 10 11 11 /* includes */ … … 233 233 BOOLEAN rIsPolyVar(int i, ring r = currRing); 234 234 235 #ifdef HAVE_PLURAL 236 inline BOOLEAN rIsPluralRing(ring r) 237 { 238 return r->nc != NULL; 239 } 240 #endif 241 235 242 #ifdef RDEBUG 236 243 #define rTest(r) rDBTest(r, __FILE__, __LINE__)
Note: See TracChangeset
for help on using the changeset viewer.