Changeset 9c1b63 in git
- Timestamp:
- Feb 12, 2009, 5:19:23 PM (14 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 40165d708d5c5de0e1ae9846acbc8942e2533da5
- Parents:
- dfd21411a39a507a93f99303b72f21a2030348f4
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/ideals.cc
rdfd214 r9c1b63 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ideals.cc,v 1.6 8 2009-02-12 13:45:23 SingularExp $ */4 /* $Id: ideals.cc,v 1.69 2009-02-12 16:19:23 motsak Exp $ */ 5 5 /* 6 6 * ABSTRACT - all basic methods to manipulate ideals … … 4009 4009 NOTE: for every f_i we run only ONCE along w_i saving partial sums into a temporary array of polys of size m 4010 4010 */ 4011 ideal tensorModuleMult(const int m, const ideal M, const ring rRing)4011 ideal id_TensorModuleMult(const int m, const ideal M, const ring rRing) 4012 4012 { 4013 4013 // #ifdef DEBU … … 4067 4067 assume( (cc + (vv-1)*m) == gen ); 4068 4068 4069 4070 p_AddExp(h, vv, 1, rRing); // h *= var(j) && 4069 p_IncrExp(h, vv, rRing); // h *= var(j) && // p_AddExp(h, vv, 1, rRing); 4071 4070 p_SetComp(h, cc, rRing); 4072 4071 -
kernel/ideals.h
rdfd214 r9c1b63 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: ideals.h,v 1.1 2 2009-02-12 13:31:22motsak Exp $ */6 /* $Id: ideals.h,v 1.13 2009-02-12 16:19:23 motsak Exp $ */ 7 7 /* 8 8 * ABSTRACT - all basic methods to manipulate ideals … … 151 151 ideal idTransp(ideal a); 152 152 // version of "ideal idTransp(ideal)" which works within a given ring. 153 ideal id_Transp(ideal a, const ring rRing );153 ideal id_Transp(ideal a, const ring rRing = currRing); 154 154 155 155 … … 166 166 167 167 168 ideal tensorModuleMult(const int m, const ideal M, const ringrRing); // image of certain map for BGG168 ideal id_TensorModuleMult(const int m, const ideal M, const ring rRing = currRing); // image of certain map for BGG 169 169 170 170
Note: See TracChangeset
for help on using the changeset viewer.