Changeset 98b2d31 in git


Ignore:
Timestamp:
Aug 11, 2011, 2:22:53 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '52dcfddee5ec87d404d5e0fb44f2d627608208f1')
Children:
bda3ea63e914ed9e4c29fa58362e3b31a758bc4d
Parents:
5ad2f83d3e2adb737f473c82dc9e1098500624e9
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-11 14:22:53+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:19:14+01:00
Message:
fix ipconc.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipconv.cc

    r5ad2f8 r98b2d31  
    6969{
    7070  number n=n_Init_bigint((number)data, currRing->cf, currRing->cf);
    71   nlDelete((number *)&data,NULL);
     71  n_Delete((number *)&data,coeffs_BIGINT);
    7272  poly p=pNSet(n);
    7373  if (p!=NULL) pSetComp(p,1);
     
    8686  ideal I=idInit(1,1);
    8787  number n=n_Init_bigint((number)data, currRing->cf, currRing->cf);
    88   nlDelete((number *)&data,NULL);
     88  n_Delete((number *)&data,coeffs_BIGINT);
    8989  poly p=pNSet(n);
    9090  I->m[0]=p;
     
    156156static void * iiI2BI(void *data)
    157157{
    158   number n=nlInit((int)(long)data, NULL /*dummy for nlInit*/);
     158  number n=n_Init((int)(long)data, coeffs_BIGINT);
    159159  return (void *)n;
    160160}
Note: See TracChangeset for help on using the changeset viewer.