Changeset 48c934 in git
- Timestamp:
- Sep 24, 1997, 12:52:42 PM (26 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 99712fe05cf5af352d82d7cd058e186881446a54
- Parents:
- f854276e19e705267ee5f8a1338dd38ab1b7b51e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/int_int.cc
rf85427 r48c934 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: int_int.cc,v 1. 6 1997-09-10 15:42:11schmidt Exp $ */2 /* $Id: int_int.cc,v 1.7 1997-09-24 10:52:42 schmidt Exp $ */ 3 3 4 4 #include <config.h> … … 767 767 //}}} 768 768 769 //{{{ InternalCF* InternalInteger::sqrt () 770 // docu: see CanonicalForm::sqrt() 769 771 InternalCF* 770 InternalInteger::sqrt ()772 InternalInteger::sqrt () 771 773 { 772 774 ASSERT( mpz_cmp_si( &thempi, 0 ) >= 0, "illegal instruction" ); … … 782 784 return new InternalInteger( result ); 783 785 } 784 785 //{{{ int InternalInteger::ilog2() 786 //}}} 787 788 //{{{ int InternalInteger::ilog2 () 786 789 // docu: see CanonicalForm::ilog2() 787 790 int 788 InternalInteger::ilog2 ()791 InternalInteger::ilog2 () 789 792 { 790 793 ASSERT( mpz_cmp_si( &thempi, 0 ) > 0, "log arg <= 0" );
Note: See TracChangeset
for help on using the changeset viewer.