Changeset bfbc32 in git
- Timestamp:
- Dec 20, 2000, 6:20:02 PM (22 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- bf29a4692e3955673873f06d0d3ab862206e38ef
- Parents:
- 6a137423640627dac7a85d2ab93041fdc1c7bb27
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/kutil.cc
r6a13742 rbfbc32 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1. 89 2000-12-20 13:38:21obachman Exp $ */4 /* $Id: kutil.cc,v 1.90 2000-12-20 17:20:00 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 2655 2655 op = strat->tailRing->pFDeg(hn, strat->tailRing); 2656 2656 if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done; 2657 e = pLDeg(hn, &l, strat->tailRing) - op;2657 e = strat->tailRing->pLDeg(hn, &l, strat->tailRing) - op; 2658 2658 while (1) 2659 2659 { … … 2681 2681 op = strat->tailRing->pFDeg(hn, strat->tailRing); 2682 2682 if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done; 2683 e = pLDeg(hn, &l) - op;2683 e = strat->tailRing->pLDeg(hn, &l, strat->tailRing) - op; 2684 2684 } 2685 2685 h = hn; … … 4019 4019 T_j->max = NULL; 4020 4020 } 4021 if (TEST_OPT_INTSTRATEGY) 4022 T_j->pCleardenom(); 4021 4023 } 4022 4024 else … … 4027 4029 else 4028 4030 strat->S[i] = redtail(strat->S[i], strat->sl, strat); 4029 }4030 if (TEST_OPT_INTSTRATEGY)4031 pCleardenom(strat->S[i]);4031 if (TEST_OPT_INTSTRATEGY) 4032 pCleardenom(strat->S[i]); 4033 } 4032 4034 if (TEST_OPT_PROT) 4033 4035 PrintS("-"); -
Singular/matpol.cc
r6a13742 rbfbc32 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: matpol.cc,v 1.3 5 2000-09-18 09:19:15obachman Exp $ */4 /* $Id: matpol.cc,v 1.36 2000-12-20 17:20:01 obachman Exp $ */ 5 5 6 6 /* … … 218 218 for (k=1; k<=p; k++) 219 219 { 220 aik = pCopy(MATELEM(a,i,k)); 221 bkj = pCopy(MATELEM(b,k,j)); 222 s = pMult(aik,bkj); 220 s = ppMult_qq(MATELEM(a,i,k), MATELEM(b,k,j)); 223 221 t = pAdd(t,s); 224 222 } -
Singular/p_Procs_Generate.cc
r6a13742 rbfbc32 8 8 * Author: obachman (Olaf Bachmann) 9 9 * Created: 8/00 10 * Version: $Id: p_Procs_Generate.cc,v 1. 2 2000-12-12 08:44:50obachman Exp $10 * Version: $Id: p_Procs_Generate.cc,v 1.3 2000-12-20 17:20:02 obachman Exp $ 11 11 *******************************************************************/ 12 12 … … 42 42 43 43 // plus procs with FieldZp 44 if ( field == FieldZp&&44 if ((field == FieldZp || field == FieldQ) && 45 45 // which are not general in length or ord 46 46 !((length == LengthGeneral && p_ProcDependsOn_Length(proc)) || … … 49 49 (!p_ProcDependsOn_Length(proc) || (length >= LengthFour))) 50 50 return 1; 51 52 51 53 52 54 return 0;
Note: See TracChangeset
for help on using the changeset viewer.