Changeset e48172 in git
- Timestamp:
- Sep 9, 2011, 4:04:39 PM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 1db880fcd4839a96f69bdde0fc3337c25fd0d29d
- Parents:
- 2fce0e72bb8742c39ab721c3ed1e0d384db1ea25
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-09 16:04:39+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:39+01:00
- Location:
- libpolys/polys/monomials
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/p_polys.cc
r2fce0e re48172 2132 2132 } 2133 2133 } 2134 #if 0 // currently not used 2135 void p_SimpleContent(poly ph,int smax, const ring r) 2134 2135 // Not yet? 2136 #if 1 // currently only used by Singular/janet 2137 void p_SimpleContent(poly ph, int smax, const ring r) 2136 2138 { 2137 2139 if(TEST_OPT_CONTENTSB) return; … … 2139 2141 if (pNext(ph)==NULL) 2140 2142 { 2141 p_SetCoeff(ph,n_Init(1,r _cf),r);2143 p_SetCoeff(ph,n_Init(1,r->cf),r); 2142 2144 return; 2143 2145 } … … 2147 2149 } 2148 2150 number d=p_InitContent(ph,r); 2149 if (n lSize(d,r->cf)<=smax)2151 if (n_Size(d,r->cf)<=smax) 2150 2152 { 2151 2153 //if (TEST_OPT_PROT) PrintS("G"); 2152 2154 return; 2153 2155 } 2156 2157 2154 2158 poly p=ph; 2155 2159 number h=d; -
libpolys/polys/monomials/p_polys.h
r2fce0e re48172 226 226 227 227 void p_Content(poly p, const ring r); 228 #if 1 229 // currently only used by Singular/janet 228 230 void p_SimpleContent(poly p, int s, const ring r); 231 #endif 229 232 230 233 poly p_Cleardenom(poly p, const ring r);
Note: See TracChangeset
for help on using the changeset viewer.