Changeset 2e61d1c in git for factory


Ignore:
Timestamp:
Apr 6, 1998, 2:05:51 PM (26 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
Children:
b391dedab7784356be81af9c31c46a9c215f97c5
Parents:
88ede96835b4305a14e21ff220d0e5eebd58549b
Message:
	* fac_univar.cc (UnivariateQuadraticLift, UnivariateLinearLift):
	  call to `div( CF, CF )' replaced by call to `operator / ( CF, CF )'


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

Legend:

Unmodified
Added
Removed
  • factory/fac_univar.cc

    r88ede9 r2e61d1c  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: fac_univar.cc,v 1.17 1998-03-12 14:32:54 schmidt Exp $ */
     2/* $Id: fac_univar.cc,v 1.18 1998-04-06 12:05:51 schmidt Exp $ */
    33
    44#include <config.h>
     
    271271
    272272    while ( ! e.isZero() && j > 0 ) {
    273         c = div( e, modulus );
     273        c = e / modulus;
    274274        {
    275275            j--;
     
    338338
    339339    while ( ! e.isZero() && i <= k ) {
    340         c = div( e, modulus );
     340        c = e / modulus;
    341341        {
    342342            setCharacteristic( p );
Note: See TracChangeset for help on using the changeset viewer.