Changeset a38f5ea in git
- Timestamp:
- Mar 27, 1998, 4:43:29 PM (25 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- df3f4f16f3d0aaeb2f08170f8cae81b5d5c395b5
- Parents:
- 0498af627b4dbd25f3b68c7b681256ffe9cfdda5
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ChangeLog
r0498af ra38f5ea 1 1998-03-27 Olaf Bachmann <obachman@mathematik.uni-kl.de> 2 3 * longalg.cc (naDBTest): fixed lines for number tests 4 5 * added spSpolyLoop.inc to repository 6 7 * algmap.cc (maAlgpolyMap): fixed bug which changed preimage 8 1 9 1998-03-23 Olaf Bachmann <obachman@mathematik.uni-kl.de> 2 10 -
Singular/algmap.cc
r0498af ra38f5ea 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: algmap.cc,v 1. 9 1998-03-27 14:44:23obachman Exp $ */4 /* $Id: algmap.cc,v 1.10 1998-03-27 15:43:17 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT - the mapping of polynomials from rings with … … 197 197 } 198 198 199 static poly maLongalgMap(poly res, poly p0, int s, int t,199 static poly maLongalgMap(poly res, ring r, poly p0, int s, int t, 200 200 BOOLEAN *nom, poly monpart, ideal F) 201 201 { … … 205 205 int i; 206 206 207 pTest(monpart);208 207 if (s == 0) 209 208 { … … 222 221 pMultN(monpart,pGetCoeff(p0)); 223 222 } 224 pSetCompP(monpart, p GetComp(p0));223 pSetCompP(monpart, pRingGetComp(r, p0)); 225 224 return pAdd(res, monpart); 226 225 } … … 262 261 } 263 262 } 264 pTest(q);265 263 } 266 264 q1 = pAdd(q1, q); 267 pTest(q1);268 265 a0 = napNext(a0); 269 266 } 270 267 while (a0 != NULL); 271 268 q1 = pMult(q1,monpart); 272 pTest(q1); 273 pSetCompP(q1,pGetComp(p0)); 274 pTest(q1); 269 pSetCompP(q1,pRingGetComp(r, p0)); 275 270 return pAdd(res, q1); 276 271 } … … 319 314 p0->next=NULL; 320 315 monpart = maEval((map)G, p0, R); 321 result = maLongalgMap(result, p0, s, t, &nom, monpart, F);316 result = maLongalgMap(result, R, p0, s, t, &nom, monpart, F); 322 317 pTest(result); 323 318 if (nom) … … 328 323 p0=pr; 329 324 } 330 pTest(result);331 325 return result; 332 326 } -
Singular/configure
r0498af ra38f5ea 540 540 SINGULAR_MAJOR_VERSION=1 541 541 SINGULAR_MINOR_VERSION=1 542 SINGULAR_SUB_VERSION= 7543 VERSION_DATE=" March1998"542 SINGULAR_SUB_VERSION=8 543 VERSION_DATE="April 1998" 544 544 545 545 -
Singular/configure.in
r0498af ra38f5ea 8 8 SINGULAR_MAJOR_VERSION=1 9 9 SINGULAR_MINOR_VERSION=1 10 SINGULAR_SUB_VERSION= 711 VERSION_DATE=" March1998"10 SINGULAR_SUB_VERSION=8 11 VERSION_DATE="April 1998" 12 12 AC_SUBST(SINGULAR_MAJOR_VERSION) 13 13 AC_SUBST(SINGULAR_MINOR_VERSION) -
Singular/extra.cc
r0498af ra38f5ea 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: extra.cc,v 1.3 0 1998-03-27 14:44:24obachman Exp $ */4 /* $Id: extra.cc,v 1.31 1998-03-27 15:43:27 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: general interface to internals of Singular ("system" command) … … 483 483 { 484 484 i1->m[k] = maAlgpolyMap(r0, i0->m[k], i, j); 485 pTest(i1->m[k]);486 485 } 487 486 res->rtyp = IDEAL_CMD; -
Singular/longalg.cc
r0498af ra38f5ea 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: longalg.cc,v 1. 19 1998-02-17 15:06:40obachman Exp $ */4 /* $Id: longalg.cc,v 1.20 1998-03-27 15:43:28 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: algebraic numbers … … 2473 2473 // return FALSE; 2474 2474 //} 2475 if (naIsChar0 && nlDBTest(p->ko,f,l))2475 if (naIsChar0 && !(nlDBTest(p->ko,f,l))) 2476 2476 return FALSE; 2477 2477 #ifdef MDEBUG … … 2483 2483 while(p!=NULL) 2484 2484 { 2485 if (naIsChar0 && nlDBTest(p->ko,f,l))2485 if (naIsChar0 && !(nlDBTest(p->ko,f,l))) 2486 2486 return FALSE; 2487 2487 #ifdef MDEBUG -
Singular/polys-impl.cc
r0498af ra38f5ea 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys-impl.cc,v 1.1 3 1998-03-27 14:44:26obachman Exp $ */4 /* $Id: polys-impl.cc,v 1.14 1998-03-27 15:43:29 obachman Exp $ */ 5 5 6 6 /*************************************************************** … … 665 665 return FALSE; 666 666 #endif 667 if (pGetComp(p) > 10)668 {669 Print("Component > 10 in poly in %s: %d\n", f,l);670 }671 667 #ifdef LDEBUG 672 668 if (!nDBTest(p->coef,f,l)) 673 669 return FALSE; 674 670 #endif 675 671 if ((p->coef==NULL)&&(nGetChar()<2)) -
configure
r0498af ra38f5ea 561 561 SINGULAR_MAJOR_VERSION=1 562 562 SINGULAR_MINOR_VERSION=1 563 SINGULAR_SUB_VERSION= 5564 VERSION_DATE=" December 1997"563 SINGULAR_SUB_VERSION=8 564 VERSION_DATE="April 1998" 565 565 566 566 -
configure.in
r0498af ra38f5ea 8 8 SINGULAR_MAJOR_VERSION=1 9 9 SINGULAR_MINOR_VERSION=1 10 SINGULAR_SUB_VERSION= 511 VERSION_DATE=" December 1997"10 SINGULAR_SUB_VERSION=8 11 VERSION_DATE="April 1998" 12 12 AC_SUBST(SINGULAR_MAJOR_VERSION) 13 13 AC_SUBST(SINGULAR_MINOR_VERSION)
Note: See TracChangeset
for help on using the changeset viewer.