Changeset 6a4ba5f in git
- Timestamp:
- Sep 12, 2011, 5:26:29 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- d67fcad45b24dac7faa0f1b23dc90bec67b9de70
- Parents:
- 43568ca9f856f5176ea8760271270a627b20bff6
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-09-12 17:26:29+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:44+01:00
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r43568c r6a4ba5f 2775 2775 res->data = (char *)idQuot((ideal)u->Data(),(ideal)v->Data(), 2776 2776 hasFlag(u,FLAG_STD),u->Typ()==v->Typ()); 2777 id DelMultiples((ideal)(res->data));2777 id_DelMultiples((ideal)(res->data),currRing); 2778 2778 return FALSE; 2779 2779 } … … 3129 3129 if (sw & SIMPL_LMDIV) 3130 3130 { 3131 id DelDiv(id);3131 id_DelDiv(id,currRing); 3132 3132 } 3133 3133 if (sw & SIMPL_LMEQ) 3134 3134 { 3135 id DelLmEquals(id);3135 id_DelLmEquals(id,currRing); 3136 3136 } 3137 3137 if (sw & SIMPL_MULT) 3138 3138 { 3139 id DelMultiples(id);3139 id_DelMultiples(id,currRing); 3140 3140 } 3141 3141 else if(sw & SIMPL_EQU) 3142 3142 { 3143 id DelEquals(id);3143 id_DelEquals(id,currRing); 3144 3144 } 3145 3145 if (sw & SIMPL_NULL) … … 3149 3149 if (sw & SIMPL_NORM) 3150 3150 { 3151 id Norm(id);3151 id_Norm(id,currRing); 3152 3152 } 3153 3153 res->data = (char * )id; -
kernel/ideals.cc
r43568c r6a4ba5f 710 710 rDelete(syz_ring); 711 711 #ifdef HAVE_PLURAL 712 if (rIsPluralRing( currRing))713 { 714 id DelMultiples(s_h3);712 if (rIsPluralRing(orig_ring)) 713 { 714 id_DelMultiples(s_h3,orig_ring); 715 715 idSkipZeroes(s_h3); 716 716 } -
kernel/ideals.h
r43568c r6a4ba5f 48 48 } 49 49 50 //void id_Norm(ideal id, const ring r);51 #define idNorm(I) id_Norm(I,currRing)52 53 //void id_DelMultiples(ideal id, const ring r);54 #define idDelMultiples(I) id_DelMultiples(I,currRing)55 56 //void id_DelEquals(ideal id, const ring r);57 #define idDelEquals(I) id_DelEquals(I,currRing)58 59 //void id_DelLmEquals(ideal id, const ring r);60 #define idDelLmEquals(I) id_DelLmEquals(I,currRing)61 62 //void id_DelDiv(ideal id, const ring r);63 #define idDelDiv(I) id_DelDiv(I,currRing)64 50 65 51 //BOOLEAN id_IsConstant(ideal id, const ring r); … … 76 62 #endif 77 63 78 ideal id_Copy (ideal h1, const ring r = currRing);64 ideal id_Copy (ideal h1, const ring r); 79 65 80 66 #if 0
Note: See TracChangeset
for help on using the changeset viewer.