Changeset 97f004 in git


Ignore:
Timestamp:
May 19, 1998, 11:48:51 AM (25 years ago)
Author:
Wilfred Pohl <pohl@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
6ab5b1ea6008656f2868d8ce72434f8a16df99bd
Parents:
480cefb0e97369b8fa992141df1c4d2076bef283
Message:
__MWERKS__ => __NO_CONSTR__


git-svn-id: file:///usr/local/Singular/svn/trunk@1865 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • Singular/fglmcomb.cc

    r480cef r97f004  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglmcomb.cc,v 1.10 1998-05-15 14:31:20 wichmann Exp $
     2// $Id: fglmcomb.cc,v 1.11 1998-05-19 09:46:46 pohl Exp $
    33
    44/****************************************
     
    260260        }
    261261        nf[k]= current;
    262 #ifdef __MWERKS__
     262#ifdef __NO_CONSTR__
    263263        mv[k].mac_constr( currV );
    264264#else
     
    271271        STICKYPROT( "." );
    272272 
    273 #ifdef __MWERKS__
     273#ifdef __NO_CONSTR__
    274274        v[k].mac_constr_i( basisSize );
    275275#else
     
    472472    STICKYPROT2( "(%i)", basisSize );
    473473    for ( k= 0; k < numMonoms; k++ ) {
    474 #ifdef __MWERKS__
     474#ifdef __NO_CONSTR__
    475475        v[k].mac_constr_i( basisSize );
    476476#else
  • Singular/fglmgauss.cc

    r480cef r97f004  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglmgauss.cc,v 1.6 1998-04-08 12:12:43 pohl Exp $
     2// $Id: fglmgauss.cc,v 1.7 1998-05-19 09:47:43 pohl Exp $
    33
    44/****************************************
     
    3232        newfac= NULL;
    3333    }
    34 #ifdef __MWERKS__
     34#ifdef __NO_CONSTR__
    3535    void mac_gaussElem( const fglmVector newv, const fglmVector newp, number & newpdenom, number & newfac )
    3636    {
     
    170170   
    171171    pivot= nCopy( v.getconstelem( pivotcol ) );
    172 #ifdef __MWERKS__
     172#ifdef __NO_CONSTR__
    173173    elems[size].mac_gaussElem( v, p, pdenom, pivot );
    174174#else
  • Singular/fglmvec.cc

    r480cef r97f004  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglmvec.cc,v 1.7 1998-04-08 12:13:21 pohl Exp $
     2// $Id: fglmvec.cc,v 1.8 1998-05-19 09:45:02 pohl Exp $
    33
    44/****************************************
     
    143143        delete rep;
    144144}
    145 #ifdef __MWERKS__
     145#ifdef __NO_CONSTR__
    146146void
    147147fglmVector::mac_constr( const fglmVector & v)
  • Singular/fglmvec.h

    r480cef r97f004  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglmvec.h,v 1.5 1998-04-08 12:12:04 pohl Exp $
     2// $Id: fglmvec.h,v 1.6 1998-05-19 09:43:47 pohl Exp $
    33
    44/****************************************
     
    3030    fglmVector( const fglmVector & v );
    3131    ~fglmVector();
    32 #ifdef __MWERKS__
     32#ifdef __NO_CONSTR__
    3333    void mac_constr( const fglmVector & v);
    3434    void mac_constr_i( int size);
  • Singular/fglmzero.cc

    r480cef r97f004  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: fglmzero.cc,v 1.15 1998-05-15 14:31:04 wichmann Exp $
     2// $Id: fglmzero.cc,v 1.16 1998-05-19 09:48:51 pohl Exp $
    33
    44/****************************************
     
    291291    borderElem( poly p, fglmVector n ) : monom( p ), nf( n ) {}
    292292    ~borderElem() { pDelete1( &monom ); }
    293 #ifdef __MWERKS__
     293#ifdef __NO_CONSTR__
    294294    void insertElem( poly p, fglmVector n )
    295295    {
     
    370370    borderMax= borderBS;
    371371    borderSize= 0;
    372 #ifdef __MWERKS__
     372#ifdef __NO_CONSTR__
    373373    border= new borderElem[ borderMax ];
    374374#else
     
    384384        pDelete1( basis + k );  //. rem: basis runs from basis[1]..basis[basisSize]
    385385    Free( (ADDRESS)basis, basisMax*sizeof( poly ) );
    386 #ifdef __MWERKS__
     386#ifdef __NO_CONSTR__
    387387    delete [] border;
    388388#else
     
    420420    borderSize++;
    421421    if ( borderSize == borderMax ) {
    422 #ifdef __MWERKS__
     422#ifdef __NO_CONSTR__
    423423        borderElem * tempborder = new borderElem[ borderMax+borderBS ];
    424424        for ( int k = 0; k < borderMax; k++ ) {
     
    433433        borderMax+= borderBS;
    434434    }
    435 #ifdef __MWERKS__
     435#ifdef __NO_CONSTR__
    436436    border[borderSize].insertElem( m, v );
    437437#else
     
    674674    number fac;
    675675
    676 #ifdef __MWERKS__
     676#ifdef __NO_CONSTR__
    677677    oldGaussElem() : v(), p(), pdenom( NULL ), fac( NULL ) {}
    678678#endif
     
    683683    }
    684684    ~oldGaussElem();
    685 #ifdef __MWERKS__
     685#ifdef __NO_CONSTR__
    686686    void insertElem( const fglmVector newv, const fglmVector newp, number & newpdenom, number & newfac )
    687687    {
     
    742742    basisSize= 0;
    743743    //. All arrays run from [1]..[dimen], thus Alloc( dimen + 1 )!
    744 #ifdef __MWERKS__
     744#ifdef __NO_CONSTR__
    745745    gauss= new oldGaussElem[ dimen+1 ];
    746746#else
     
    760760    fglmASSERT( dimen == basisSize, "Es wurden nicht alle BasisElemente gefunden!" );
    761761    int k;
    762 #ifdef __MWERKS__
     762#ifdef __NO_CONSTR__
    763763    delete [] gauss;
    764764#else
     
    813813   
    814814    pivot= nCopy( v.getconstelem( pivotcol ) );
    815 #ifdef __MWERKS__
     815#ifdef __NO_CONSTR__
    816816    gauss[basisSize].insertElem( v, p, denom, pivot );
    817817#else
Note: See TracChangeset for help on using the changeset viewer.