Changeset 69bba6 in git


Ignore:
Timestamp:
Jan 27, 1998, 5:47:29 PM (26 years ago)
Author:
Wilfred Pohl <pohl@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c2b5292f4f4a8fb69fe962ab085f50c351f952fd
Parents:
a29c12c4bed10dedb886339875c6f9b82f0d7907
Message:
constructor for mac


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

Legend:

Unmodified
Added
Removed
  • Singular/fglmgauss.cc

    ra29c12 r69bba6  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglmgauss.cc,v 1.4 1997-12-03 16:58:36 obachman Exp $
     2// $Id: fglmgauss.cc,v 1.5 1998-01-27 16:47:29 pohl Exp $
    33
    44/****************************************
     
    3232        newfac= NULL;
    3333    }
     34#ifdef macintosh
     35    void mac_gaussElem( const fglmVector newv, const fglmVector newp, number & newpdenom, number & newfac )
     36    {
     37    v= newv;
     38    p= newp;
     39    pdenom=newpdenom;
     40    fac=newfac;
     41        newpdenom= NULL;
     42        newfac= NULL;
     43    }
     44#endif
    3445    ~gaussElem()
    3546    {
     
    159170   
    160171    pivot= nCopy( v.getconstelem( pivotcol ) );
     172#ifdef macintosh
     173    elems[size].mac_gaussElem( v, p, pdenom, pivot );
     174#else
    161175    elems[size].gaussElem( v, p, pdenom, pivot );
     176#endif
    162177}
    163178
Note: See TracChangeset for help on using the changeset viewer.