Changeset aff5ae in git for coeffs/longrat.cc


Ignore:
Timestamp:
May 20, 2010, 6:11:34 PM (14 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
27ffebd19cb2c6cbd9472eac3bfc652b3136e814
Parents:
8835e2bb59a1c09633e3d9728f08161ac7d4be8d
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2010-05-20 18:11:34+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:54:57+01:00
Message:
nInitChar and related stuff
File:
1 edited

Legend:

Unmodified
Added
Removed
  • coeffs/longrat.cc

    r8835e2b raff5ae  
    24572457}
    24582458
    2459 static BOOLEAN nlCoeffsEqual(const coeffs r, n_coeffType n, int parameter)
     2459static BOOLEAN nlCoeffsEqual(const coeffs r, n_coeffType n, void * parameter)
    24602460{
    24612461  /* test, if r is an instance of nInitCoeffs(n,parameter) */
     
    24652465void nlInitChar(coeffs r, int ch)
    24662466{
    2467   //r->cfInitChar=nlInitChar;
    24682467  r->cfKillChar=NULL;
    24692468  r->cfSetChar=NULL;
     
    24782477  r->nExactDiv= nlExactDiv;
    24792478  r->cfInit = nlInit;
    2480   r->nPar = ndPar;
    2481   r->nParDeg = ndParDeg;
     2479  //r->nPar = ndPar;
     2480  //r->nParDeg = ndParDeg;
    24822481  r->nSize  = nlSize;
    24832482  r->n_Int  = nlInt;
    24842483  #ifdef HAVE_RINGS
    2485   r->nDivComp = NULL; // only for ring stuff
    2486   r->nIsUnit = NULL; // only for ring stuff
    2487   r->nGetUnit = NULL; // only for ring stuff
    2488   r->nExtGcd = NULL; // only for ring stuff
     2484  //r->nDivComp = NULL; // only for ring stuff
     2485  //r->nIsUnit = NULL; // only for ring stuff
     2486  //r->nGetUnit = NULL; // only for ring stuff
     2487  //r->nExtGcd = NULL; // only for ring stuff
    24892488  #endif
    24902489  r->nNeg   = nlNeg;
     
    24922491  r->cfCopy  = nl_Copy;
    24932492  r->nRePart = nl_Copy;
    2494   r->nImPart = ndReturn0;
     2493  //r->nImPart = ndReturn0;
    24952494  r->cfWrite = nlWrite;
    24962495  r->nRead = nlRead;
     
    24982497  r->nGreater = nlGreater;
    24992498  #ifdef HAVE_RINGS
    2500   r->nDivBy = NULL; // only for ring stuff
     2499  //r->nDivBy = NULL; // only for ring stuff
    25012500  #endif
    25022501  r->nEqual = nlEqual;
     
    25122511  r->cfDelete= nlDelete;
    25132512  r->cfSetMap = nlSetMap;
    2514   r->nName = ndName;
     2513  //r->nName = ndName;
    25152514  r->nInpMult=nlInpMult;
    25162515  r->nInit_bigint=nlCopyMap;
     
    25222521  // the variables: general stuff (required)
    25232522  r->nNULL = INT_TO_SR(0);
    2524   r->type = n_Q;
     2523  //r->type = n_Q;
    25252524  r->ch = 0;
    25262525  r->has_simple_Alloc=FALSE;
Note: See TracChangeset for help on using the changeset viewer.