Changeset ec970e in git for factory/int_poly.h
- Timestamp:
- Jul 6, 2011, 2:41:32 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 42281d63800a31c74efe7fb9afecba0a2d1cbe9d
- Parents:
- e28e6d1742e673c091f48a99b5d6d522e5d5bfa2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/int_poly.h
re28e6d rec970e 71 71 static termList divideTermList ( termList, const CanonicalForm&, termList& ); 72 72 static termList divTermList ( termList, const CanonicalForm&, termList& ); 73 static termList tryDivTermList ( termList, const CanonicalForm&, termList&, const CanonicalForm&, bool& ); 73 74 static termList modTermList ( termList, const CanonicalForm&, termList& ); 74 75 static void appendTermList ( termList&, termList&, const CanonicalForm&, const int ); … … 106 107 InternalCF* neg(); 107 108 InternalCF* invert(); 108 109 InternalCF* tryInvert( const CanonicalForm&, bool& ); 109 110 int comparesame ( InternalCF* ); 110 111 … … 112 113 InternalCF* subsame( InternalCF* ); 113 114 InternalCF* mulsame( InternalCF* ); 115 InternalCF* tryMulsame ( InternalCF*, const CanonicalForm&); 114 116 InternalCF* dividesame( InternalCF* ); 115 117 InternalCF* modulosame( InternalCF* ); 116 118 InternalCF* divsame( InternalCF* ); 119 InternalCF* tryDivsame ( InternalCF*, const CanonicalForm&, bool& ); 117 120 InternalCF* modsame( InternalCF* ); 118 121 void divremsame( InternalCF*, InternalCF*&, InternalCF*& ); 119 122 bool divremsamet( InternalCF*, InternalCF*&, InternalCF*& ); 123 bool tryDivremsamet( InternalCF*, InternalCF*&, InternalCF*&, const CanonicalForm&, bool& ); 120 124 121 125 int comparecoeff ( InternalCF* ); … … 125 129 InternalCF* mulcoeff( InternalCF* ); 126 130 InternalCF* dividecoeff( InternalCF*, bool ); 131 InternalCF* tryDividecoeff ( InternalCF*, bool, const CanonicalForm&, bool& ); 127 132 InternalCF* modulocoeff( InternalCF*, bool ); 128 133 InternalCF* divcoeff( InternalCF*, bool ); 134 InternalCF* tryDivcoeff ( InternalCF*, bool, const CanonicalForm&, bool& ); 129 135 InternalCF* modcoeff( InternalCF*, bool ); 130 136 void divremcoeff( InternalCF*, InternalCF*&, InternalCF*&, bool ); 131 137 bool divremcoefft( InternalCF*, InternalCF*&, InternalCF*&, bool ); 138 bool tryDivremcoefft ( InternalCF*, InternalCF*&, InternalCF*&, bool, const CanonicalForm&, bool& ); 132 139 133 140 int sign() const;
Note: See TracChangeset
for help on using the changeset viewer.