Changeset 516dc8 in git


Ignore:
Timestamp:
Oct 10, 1997, 12:35:00 PM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
791c0a38fb1f994041336b04086e94a782c10772
Parents:
7e0be1775e73a414d64da15b4af232adea1e889c
Message:
	* int_rat.cc: doc fix


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

Legend:

Unmodified
Added
Removed
  • factory/int_rat.cc

    r7e0be1 r516dc8  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: int_rat.cc,v 1.5 1997-09-10 15:46:21 schmidt Exp $ */
     2/* $Id: int_rat.cc,v 1.6 1997-10-10 10:35:00 schmidt Exp $ */
    33
    44#include <config.h>
     
    139139}
    140140
    141 InternalCF* InternalRational::num()
     141//{{{ InternalCF* InternalRational::num (), den ()
     142// docu: see CanonicalForm::num(), den()
     143InternalCF* InternalRational::num ()
    142144{
    143145    if ( mpz_is_imm( &_num ) ) {
     
    152154}
    153155
    154 InternalCF* InternalRational::den()
     156InternalCF* InternalRational::den ()
    155157{
    156158    if ( mpz_is_imm( &_den ) ) {
     
    164166    }
    165167}
     168//}}}
    166169
    167170InternalCF* InternalRational::neg()
     
    720723}
    721724
    722 // int InternalRational::intmod( int p ) const
    723 // {
    724 //   return (int)mpz_mmod_ui( 0, &thempq, (unsigned long)p );
    725 // }
    726 
    727725//{{{ int InternalRational::sign () const
    728726// docu: see CanonicalForm::sign()
Note: See TracChangeset for help on using the changeset viewer.