Changeset f414c0 in git


Ignore:
Timestamp:
Aug 30, 2009, 5:45:43 PM (14 years ago)
Author:
Christian Eder
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
Children:
a05c71fc3b41d3b12e7444da8ad632c0cdb6b3b2
Parents:
d4cec61a1937926075ff94a814d399aafb0bbacf
Message:
added argument for "f5" system call, changing between standard and updated
version for termination purposes


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    rd4cec61 rf414c0  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.314 2009-08-20 09:21:40 Singular Exp $ */
     4/* $Id: extra.cc,v 1.315 2009-08-30 15:45:43 ederc Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    26802680        opt = 2;
    26812681      }
    2682       res->rtyp=IDEAL_CMD;
    2683       res->data=(ideal) F5main(G,r,opt);
     2682      h = h->next;
     2683      int termination;
     2684      if(h != NULL) {
     2685        termination = (int) (long) h->Data();
     2686      }
     2687      else {
     2688        termination = 0;
     2689      }res->rtyp=IDEAL_CMD;
     2690      res->data=(ideal) F5main(G,r,opt,termination);
    26842691      return FALSE;
    26852692    }
Note: See TracChangeset for help on using the changeset viewer.