Changeset 05ac04 in git
- Timestamp:
- Sep 10, 1997, 5:42:36 PM (26 years ago)
- Branches:
- (u'spielwiese', '2fa36c576e6a4ddbb1093b43c7f8e9835e17e52a')
- Children:
- b761b9bd513a1376d632a6fdebb102ed20df5d4a
- Parents:
- c62f38880e34e425670cadd1e4601a54843b9953
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/int_pp.cc
rc62f38 r05ac04 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: int_pp.cc,v 1. 4 1997-09-09 09:03:35schmidt Exp $ */2 /* $Id: int_pp.cc,v 1.5 1997-09-10 15:42:36 schmidt Exp $ */ 3 3 4 4 #include <config.h> … … 377 377 } 378 378 379 int InternalPrimePower::sign ( ) const 380 { 381 return mpz_cmp_si( &thempi, 0 ); 382 } 379 //{{{ int InternalPrimePower::sign () const 380 // docu: see CanonicalForm::sign() 381 int 382 InternalPrimePower::sign () const 383 { 384 return mpz_sgn( &thempi ); 385 } 386 //}}}
Note: See TracChangeset
for help on using the changeset viewer.