Changeset 43a44b in git


Ignore:
Timestamp:
Jun 26, 1998, 6:15:28 PM (26 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
6dd2895cf5762cfd623523c3f1f6d624f28aa874
Parents:
2266ecccffc7f96b6aeac2e03cb376d4dca7573d
Message:
	* int_poly.cc, int_pp.cc, int_rat.cc (neg): doc fixes


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

Legend:

Unmodified
Added
Removed
  • factory/int_poly.cc

    r2266ec r43a44b  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: int_poly.cc,v 1.11 1998-06-03 12:51:22 pohl Exp $ */
     2/* $Id: int_poly.cc,v 1.12 1998-06-26 16:15:28 schmidt Exp $ */
    33
    44#include <config.h>
     
    202202#endif /* NOSTREAMIO */
    203203
    204 InternalCF*
    205 InternalPoly::neg()
     204//{{{ InternalCF * InternalPoly::neg ()
     205// docu: see CanonicalForm::operator -()
     206InternalCF *
     207InternalPoly::neg ()
    206208{
    207209    if ( getRefCount() == 1 ) {
    208210        negateTermList( firstTerm );
    209211        return this;
    210     }
    211     else {
     212    } else {
    212213        decRefCount();
    213214        termList last, first = copyTermList( firstTerm, last, true );
     
    215216    }
    216217}
     218//}}}
    217219
    218220InternalCF*
Note: See TracChangeset for help on using the changeset viewer.