Changeset 39457c in git for Singular/ipconv.cc


Ignore:
Timestamp:
Sep 15, 2011, 6:30:41 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
e8521255a86e408ae951c170cf03b353c321be74
Parents:
35e86e4b8846ae589996e378f75e28b2aa48605e
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-09-15 18:30:41+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:50+01:00
Message:
fix: Module2Matrix/Matrix2Module: less dep. on currRing
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipconv.cc

    r35e86e r39457c  
    131131static void * iiMo2Ma(void *data)
    132132{
    133   void *res=idModule2Matrix((ideal)data);
     133  void *res=id_Module2Matrix((ideal)data,currRing);
    134134  return res;
    135135}
     
    137137static void * iiMa2Mo(void *data)
    138138{
    139   void *res=idMatrix2Module((matrix)data);
     139  void *res=id_Matrix2Module((matrix)data,currRing);
    140140  return res;
    141141}
Note: See TracChangeset for help on using the changeset viewer.