Changeset 0a52b49 in git
- Timestamp:
- Oct 8, 2009, 12:43:33 PM (14 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- d065cd984dcdbaa794be8a7a43c69e54c1c3c000
- Parents:
- e2afcedc88f05c860f7b86aa70958e538eb8727f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/clapconv.cc
re2afced r0a52b49 3 3 * Computer Algebra System SINGULAR * 4 4 ****************************************/ 5 // $Id: clapconv.cc,v 1. 19 2009-09-24 16:37:41Singular Exp $5 // $Id: clapconv.cc,v 1.20 2009-10-08 10:43:33 Singular Exp $ 6 6 /* 7 7 * ABSTRACT: convert data between Singular and factory … … 334 334 } 335 335 } 336 if ( (e = napGetExp( p, 1)) != 0 )336 if ( (e = p_GetExp( p, 1, r->algring )) != 0 ) 337 337 term *= power( a , e ); 338 338 result += term; … … 393 393 if (naMinimalPoly!=NULL) 394 394 { 395 if ( napGetExp(a,1) >= napGetExp(naMinimalPoly,1))395 if (p_GetExp(a,1,currRing->algring) >= p_GetExp(naMinimalPoly,1,currRing->algring)) 396 396 a = napRemainder( a, naMinimalPoly); 397 397 }
Note: See TracChangeset
for help on using the changeset viewer.