Changeset 49bfb1 in git


Ignore:
Timestamp:
Feb 14, 2005, 5:16:20 PM (18 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
Children:
e95342ba7486fe2815d8c8727365ace39fee8dac
Parents:
78030c0c8fc5f971fef8cf55e88b35160a693ad6
Message:
*bricken: ring as parameter for fast mult


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r78030c r49bfb1  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.217 2005-02-14 15:29:54 bricken Exp $ */
     4/* $Id: extra.cc,v 1.218 2005-02-14 16:16:20 bricken Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    17401740      poly g=(poly)h->Data();
    17411741      res->rtyp=POLY_CMD;
    1742       res->data=unifastmult(f,g);
     1742      res->data=unifastmult(f,g,currRing);
    17431743      return(FALSE);
    17441744    }
     
    17511751      poly g=(poly)h->Data();
    17521752      res->rtyp=POLY_CMD;
    1753       res->data=multifastmult(f,g);
     1753      res->data=multifastmult(f,g,currRing);
    17541754      return(FALSE);
    17551755    }
Note: See TracChangeset for help on using the changeset viewer.