Changeset 6e11aa9 in git
- Timestamp:
- Aug 29, 2016, 5:23:00 PM (7 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 1ebbdce12c1aaa288e292fcb3087f039f304bde5
- Parents:
- 77c25235bde36a76763c4926e7734cabfa33e536
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/p_polys.h
r77c252 r6e11aa9 187 187 * returns the length of a polynomial (numbers of monomials) 188 188 */ 189 static inline intpLength(poly a)189 static inline unsigned pLength(poly a) 190 190 { 191 191 unsigned l = 0; … … 195 195 l++; 196 196 } 197 return (int)l;197 return l; 198 198 } 199 199
Note: See TracChangeset
for help on using the changeset viewer.