Changeset 128379 in git
- Timestamp:
- Jan 7, 2014, 5:42:13 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e1189c35fd3779e98427b5d018b22921bfcb3d99
- Parents:
- a5275ef9ddf687be7aeadda480e4e7d6c265dd4c
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-01-07 17:42:13+01:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-01-07 17:47:19+01:00
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/ehv.lib
ra5275ef r128379 329 329 help of regular sequences 330 330 = 2 : does not try to find a regular sequence 331 Strategy[3] > strategy for the computation of ideal quotients332 = n : uses quot(.,.,n) for the ideal quotient computations333 331 If no second argument is given then Strategy=(0,0,0) is used. 334 332 EXAMPLE: example equiRadEHV; shows an example" … … 365 363 int strategy = #[2]; 366 364 } 367 if(size(#) > 2)368 {369 int quoStr = #[3];370 }371 else372 {373 int quoStr = 0;374 }375 365 } 376 366 else 377 367 { 378 368 int strategy = 0; 379 int quoStr = 0;380 369 } 381 370 } … … 384 373 int equStr = 0; 385 374 int strategy = 0; 386 int quoStr = 0;387 375 } 388 376 … … 417 405 J = aJacob(m[2],d); 418 406 if(printlevel > 2){"Leaving equiRadEHV.";} 419 return(quot 1(m[2],J,quoStr));407 return(quotient(m[2],J)); 420 408 } 421 409 … … 460 448 J = aJacob(I0,d); 461 449 if(printlevel > 2){"1st quotient.";} 462 radI0 = quot 1(I0,J,quoStr);450 radI0 = quotient(I0,J); 463 451 if(printlevel > 2){"2nd quotient.";} 464 L = quot 1(radI0,m[2],quoStr);452 L = quotient(radI0,m[2]); 465 453 if(printlevel > 2){"3rd quotient.";} 466 radI1 = quot 1(radI0,L,quoStr);454 radI1 = quotient(radI0,L); 467 455 attrib(radI1,"isEquidimensional",1); 468 456 attrib(radI1,"isRadical",1); … … 496 484 { 497 485 if(printlevel > 2){"Quotient-Computation.";} 498 I = quot 1(I,J,quoStr);486 I = quotient(I,J); 499 487 if(printlevel > 2){"Computing the a-th Jacobian";} 500 488 J = aJacob(I,a); … … 506 494 J = aJacob(I,d); 507 495 if(printlevel > 2){"Quotient-Computation.";} 508 I = quot 1(I,J,quoStr);496 I = quotient(I,J); 509 497 attrib(I,"isEquidimensional",1); 510 498 attrib(I,"isRadical",1); -
Singular/singular-libs
ra5275ef r128379 12 12 cisimplicial.lib classify.lib \ 13 13 compregb.lib control.lib crypto.lib curvepar.lib decodegb.lib \ 14 deform.lib e lim.lib equising.lib finvar.libgeneral.lib gmspoly.lib \14 deform.lib ehv.lib elim.lib equising.lib finvar.lib general.lib gmspoly.lib \ 15 15 gmssing.lib graphics.lib grobcov.lib groups.lib grwalk.lib \ 16 16 hnoether.lib \
Note: See TracChangeset
for help on using the changeset viewer.