Changeset 2664d0f in git


Ignore:
Timestamp:
Feb 14, 2005, 4:29:54 PM (19 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
78030c0c8fc5f971fef8cf55e88b35160a693ad6
Parents:
9cb26468351fcd4a821d55df6f9e83599d693eb9
Message:
*bricken: + multifastmult


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r9cb2646 r2664d0f  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.216 2005-02-08 12:58:55 bricken Exp $ */
     4/* $Id: extra.cc,v 1.217 2005-02-14 15:29:54 bricken Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    17441744    }
    17451745    else
     1746      if (strcmp(sys_cmd, "multifastmult")==0)
     1747    {
     1748      ring r = currRing;
     1749      poly f = (poly)h->Data();
     1750      h=h->next;
     1751      poly g=(poly)h->Data();
     1752      res->rtyp=POLY_CMD;
     1753      res->data=multifastmult(f,g);
     1754      return(FALSE);
     1755    }
     1756    else
    17461757/*==================== Error =================*/
    17471758      Werror( "system(\"%s\",...) %s", sys_cmd, feNotImplemented );
Note: See TracChangeset for help on using the changeset viewer.