Changeset b90de5a in git


Ignore:
Timestamp:
Feb 8, 2005, 1:58:55 PM (18 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
Children:
cd518904e5a9af3cb906d82573eb15048b10fabf
Parents:
1c8027b86b587759ae6e422c0bd4aa615503dcb0
Message:
*bricken:unifastmult


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r1c8027b rb90de5a  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.215 2005-01-18 15:41:57 Singular Exp $ */
     4/* $Id: extra.cc,v 1.216 2005-02-08 12:58:55 bricken Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    5757#include "walk.h"
    5858#include "weight.h"
    59 
     59#include "fast_mult.h"
    6060#ifdef HAVE_SPECTRUM
    6161#include "spectrum.h"
     
    17331733    }
    17341734    else
     1735      if (strcmp(sys_cmd, "unifastmult")==0)
     1736    {
     1737      ring r = currRing;
     1738      poly f = (poly)h->Data();
     1739      h=h->next;
     1740      poly g=(poly)h->Data();
     1741      res->rtyp=POLY_CMD;
     1742      res->data=unifastmult(f,g);
     1743      return(FALSE);
     1744    }
     1745    else
    17351746/*==================== Error =================*/
    17361747      Werror( "system(\"%s\",...) %s", sys_cmd, feNotImplemented );
Note: See TracChangeset for help on using the changeset viewer.