Changeset 69262fa in git
- Timestamp:
- Apr 3, 2009, 8:28:53 PM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- e76ba8d63dfc5181e518f4faa0a9e408e27f95fe
- Parents:
- 509339932269ee5ca46faa0b1aa9cfd1de39df76
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gring.cc
r509339 r69262fa 7 7 * Author: levandov (Viktor Levandovsky) 8 8 * Created: 8/00 - 11/00 9 * Version: $Id: gring.cc,v 1.7 1 2009-02-26 15:55:46 SingularExp $9 * Version: $Id: gring.cc,v 1.72 2009-04-03 18:28:53 motsak Exp $ 10 10 *******************************************************************/ 11 11 … … 2234 2234 poly nc_mm_Bracket_nn(poly m1, poly m2); 2235 2235 2236 poly nc_p_Bracket_qq(poly p, poly q)2236 poly nc_p_Bracket_qq(poly p, const poly q) 2237 2237 /* returns [p,q], destroys p */ 2238 2238 { 2239 assume(p != NULL && q!= NULL); 2239 2240 2240 2241 if (!rIsPluralRing(currRing)) return(NULL); -
kernel/gring.h
r509339 r69262fa 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: gring.h,v 1.2 6 2009-01-06 13:59:35 SingularExp $ */6 /* $Id: gring.h,v 1.27 2009-04-03 18:28:53 motsak Exp $ */ 7 7 /* 8 8 * ABSTRACT additional defines etc for --with-plural … … 87 87 88 88 89 /* brackets: */90 poly nc_p_Bracket_qq(poly p, poly q);89 /* brackets: p will be destroyed... */ 90 poly nc_p_Bracket_qq(poly p, const poly q); 91 91 92 92 /* twostd: */
Note: See TracChangeset
for help on using the changeset viewer.