Changeset 48c934 in git


Ignore:
Timestamp:
Sep 24, 1997, 12:52:42 PM (26 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
Children:
99712fe05cf5af352d82d7cd058e186881446a54
Parents:
f854276e19e705267ee5f8a1338dd38ab1b7b51e
Message:
	* int_int.cc: doc fix


git-svn-id: file:///usr/local/Singular/svn/trunk@741 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/int_int.cc

    rf85427 r48c934  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: int_int.cc,v 1.6 1997-09-10 15:42:11 schmidt Exp $ */
     2/* $Id: int_int.cc,v 1.7 1997-09-24 10:52:42 schmidt Exp $ */
    33
    44#include <config.h>
     
    767767//}}}
    768768
     769//{{{ InternalCF* InternalInteger::sqrt ()
     770// docu: see CanonicalForm::sqrt()
    769771InternalCF*
    770 InternalInteger::sqrt()
     772InternalInteger::sqrt ()
    771773{
    772774    ASSERT( mpz_cmp_si( &thempi, 0 ) >= 0, "illegal instruction" );
     
    782784        return new InternalInteger( result );
    783785}
    784 
    785 //{{{ int InternalInteger::ilog2()
     786//}}}
     787
     788//{{{ int InternalInteger::ilog2 ()
    786789// docu: see CanonicalForm::ilog2()
    787790int
    788 InternalInteger::ilog2()
     791InternalInteger::ilog2 ()
    789792{
    790793    ASSERT( mpz_cmp_si( &thempi, 0 ) > 0, "log arg <= 0" );
Note: See TracChangeset for help on using the changeset viewer.