Changeset f44fb9 in git
- Timestamp:
- Jul 27, 2009, 10:33:59 AM (14 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 7fb366a5fb850856529c6c4f4c8cf2ac706abfba
- Parents:
- 9eafde17e376a343af44c3141b86f8e1c20a6127
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gring.cc
r9eafde rf44fb9 7 7 * Author: levandov (Viktor Levandovsky) 8 8 * Created: 8/00 - 11/00 9 * Version: $Id: gring.cc,v 1.7 4 2009-05-15 13:21:31 motsakExp $9 * Version: $Id: gring.cc,v 1.75 2009-07-27 08:33:59 Singular Exp $ 10 10 *******************************************************************/ 11 11 … … 3587 3587 // h2->rank=flag+idI+1; 3588 3588 idTest(h2); 3589 idShow(h2);3589 //idShow(h2); 3590 3590 ring orig_ring=currRing; 3591 3591 ring syz_ring=rCurrRingAssure_SyzComp(); … … 3618 3618 s_h3 = kStd(s_h2, currQuotient,(tHomog)FALSE,NULL,NULL,syzcomp,idI); 3619 3619 test=save_test; 3620 idShow(s_h3);3620 //idShow(s_h3); 3621 3621 if (orig_ring != syz_ring) 3622 3622 { … … 3661 3661 else 3662 3662 SI = idMultSect(S, syzcnt); 3663 idShow(SI);3663 //idShow(SI); 3664 3664 MI = idModule2Matrix(SI); 3665 3665 res= idInit(MATCOLS(MI),1); -
kernel/ideals.cc
r9eafde rf44fb9 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ideals.cc,v 1.7 5 2009-07-20 12:00:50 motsakExp $ */4 /* $Id: ideals.cc,v 1.76 2009-07-27 08:31:18 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - all basic methods to manipulate ideals … … 70 70 } 71 71 72 //#ifndef __OPTIMIZE__72 #ifndef __OPTIMIZE__ 73 73 // this is mainly for outputting an ideal within the debugger 74 74 void idShow(const ideal id, const ring lmRing, const ring tailRing, const int debugPrint) … … 77 77 78 78 if( id == NULL ) 79 Print ("(NULL)");79 PrintS("(NULL)"); 80 80 else 81 81 { … … 91 91 } 92 92 } 93 //#endif93 #endif 94 94 95 95 /*2
Note: See TracChangeset
for help on using the changeset viewer.