Changeset ffa476 in git


Ignore:
Timestamp:
Dec 15, 2006, 3:33:05 PM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
e670d001ee1173d383ce05e30ef73a2b79270734
Parents:
55a5c0eac64b1010bc58802ed878ed3f2f4096d8
Message:
*motsak: system(PLURAL) ->ncalgebra


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r55a5c0e rffa476  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.242 2006-09-22 10:32:11 Singular Exp $ */
     4/* $Id: extra.cc,v 1.243 2006-12-15 14:33:05 Singular Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    764764    }
    765765/*==================== PLURAL =================*/
     766#if 0
    766767    if (strcmp(sys_cmd, "PLURAL") == 0)
    767768    {
     
    976977    }
    977978    else
     979#endif
    978980/*==================== opp ==================================*/
    979981    if (strcmp(sys_cmd, "opp")==0)
     
    27722774    }
    27732775    else
     2776/*==================== gcd-test =================*/
     2777    if (strcmp(sys_cmd, "GCD") == 0)
     2778    {
     2779      if ((h!=NULL) && (h->Typ()==POLY_CMD)
     2780      && (h->next!=NULL) && (h->next->Typ()==POLY_CMD))
     2781      {
     2782        poly f=(poly)h->Data();
     2783        poly g=(poly)h->next->Data();
     2784        res->rtyp=POLY_CMD;
     2785        res->data=(char*)id_GCD(f,g,currRing);
     2786        return FALSE;
     2787      }
     2788      else return TRUE;
     2789    }
     2790    else
    27742791#ifdef ix86_Win
    27752792/*==================== Python Singular =================*/
Note: See TracChangeset for help on using the changeset viewer.