Changeset bc2606 in git
- Timestamp:
- Nov 29, 2012, 11:02:11 PM (11 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- ca5cfe83988bd636394cc6b49509717ad3b17700
- Parents:
- e17f69c6be6204d38b721577676eee640f77d78c
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-29 23:02:11+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-29 23:08:27+01:00
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/countedref.cc
re17f69 rbc2606 555 555 CountedRefShared ref = CountedRefShared::cast(head); 556 556 557 if ( (op == LINK_CMD))557 if (op == LINK_CMD) 558 558 { 559 559 if (ref.dereference(head)) return TRUE; -
Singular/countedref.h
re17f69 rbc2606 312 312 /// @name Pointer-style access 313 313 //@{ 314 const leftv operator->() const { return m_data; } 314 /*const*/ leftv operator->() const { return m_data; } 315 /*^ warning: 'const' type qualifier on return type has no effect!!! */ 315 316 leftv operator->() { return m_data; } 316 317 //@] -
dyn_modules/bigintm/bigintm.cc
re17f69 rbc2606 231 231 } 232 232 233 Werror("bigintm_Op2: Op: '==': Sorry unsupported 2nd argument-type: '% d' in", Tok2Cmdname(a2->Typ()));233 Werror("bigintm_Op2: Op: '==': Sorry unsupported 2nd argument-type: '%s' in", Tok2Cmdname(a2->Typ())); 234 234 WrongOp("bigintm_Op2", op, a1); 235 235 return TRUE; -
kernel/fglmvec.cc
re17f69 rbc2606 133 133 return elems[i - 1]; 134 134 } 135 constnumber getconstelem (int i) const135 number getconstelem (int i) const 136 136 { 137 137 fglmASSERT (0 < i && i <= N, "getconstelem: wrong index"); … … 440 440 } 441 441 442 constnumber fglmVector::getconstelem (int i) const442 number fglmVector::getconstelem (int i) const 443 443 { 444 444 return rep->getconstelem (i); -
kernel/fglmvec.h
re17f69 rbc2606 54 54 friend fglmVector operator * ( const number n, const fglmVector & v ); 55 55 56 constnumber getconstelem( int i ) const;56 number getconstelem( int i ) const; 57 57 number & getelem( int i ); 58 58 void setelem( int i, number & n ); -
kernel/tgbgauss.h
re17f69 rbc2606 12 12 //#include "tgb_internal.h" 13 13 14 structslimgb_alg;14 class slimgb_alg; 15 15 16 16 class tgb_matrix{ -
libpolys/polys/nc/summator.cc
re17f69 rbc2606 33 33 34 34 CPolynomialSummator::CPolynomialSummator(const ring& rBaseRing, bool bUsePolynomial): 35 m_b UsePolynomial(bUsePolynomial), m_basering(rBaseRing)35 m_basering(rBaseRing), m_bUsePolynomial(bUsePolynomial) 36 36 { 37 37 #ifdef RDEBUG … … 183 183 184 184 185 CPolynomialSummator::CPolynomialSummator(const CPolynomialSummator& b): m_bUsePolynomial(b.m_bUsePolynomial), m_basering(b.m_basering) 185 CPolynomialSummator::CPolynomialSummator(const CPolynomialSummator& b): 186 m_basering(b.m_basering), m_bUsePolynomial(b.m_bUsePolynomial) 186 187 { 187 188 // try{ -
numeric/mpr_base.cc
re17f69 rbc2606 1928 1928 //-> dense resultant matrix 1929 1929 // 1930 classresVector;1930 struct resVector; 1931 1931 1932 1932 /* dense resultant matrix */
Note: See TracChangeset
for help on using the changeset viewer.