Changeset 34fbd93 in git for Singular/iparith.cc


Ignore:
Timestamp:
Jul 9, 1999, 4:58:30 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
6959c49751ce060112fd62dace5b8f7590c72602
Parents:
609ba11e29d4d3c44b5785da0728121bbc8e0065
Message:
* hannes: ring r=(real,20,I),x,lp; <==> ring r=(real(20),I),x,lp;
          error message for CMD_M fixed (see coef("1","2");)
	  (grammar.y iparith.cc ipshell.h scanner.l subexpr.cc)


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

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r609ba11 r34fbd93  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: iparith.cc,v 1.157 1999-07-09 14:06:45 obachman Exp $ */
     4/* $Id: iparith.cc,v 1.158 1999-07-09 14:58:25 Singular Exp $ */
    55
    66/*
     
    43114311  leftv v=u->next;
    43124312  u->next=NULL;
    4313   BOOLEAN b=iiExprArith2(res,u,iiOp,v);
     4313  BOOLEAN b=iiExprArith2(res,u,iiOp,v, (iiOp > 255));
    43144314  u->next=v;
    43154315  return b;
     
    45224522static BOOLEAN jjKLAMMER_PL(leftv res, leftv u)
    45234523{
     4524  if (yyInRingConstruction)
     4525  {
     4526    memcpy(res,u,sizeof(sleftv));
     4527    memset(u,0,sizeof(sleftv));
     4528    return FALSE;
     4529  }
    45244530  leftv v=u->next;
    45254531  BOOLEAN b;
Note: See TracChangeset for help on using the changeset viewer.