Changeset 936551 in git


Ignore:
Timestamp:
Apr 17, 2008, 2:32:13 PM (16 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
7282887cb4b64d9b0bd7422605cafe9778d1a02e
Parents:
16466a84f8e6357349b0be5a5d5d30d69ce673d4
Message:
F5 Implementierung


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r16466a r936551  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.265 2008-03-19 17:44:29 Singular Exp $ */
     4/* $Id: extra.cc,v 1.266 2008-04-17 12:32:13 wienand Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    5757#ifdef HAVE_RINGS
    5858#include "ringgb.h"
     59#endif
     60
     61#ifdef HAVE_F5
     62#include "f5gb.h"
    5963#endif
    6064
     
    25552559    else
    25562560#endif
     2561#ifdef HAVE_F5
     2562/*==================== F5 Implementation =================*/
     2563    if (strcmp(sys_cmd, "F5")==0)
     2564    {
     2565      ring r = currRing;
     2566      ideal G = (ideal) h->Data();
     2567      res->rtyp=IDEAL_CMD;
     2568      res->data=(ideal) computeF5(G, r);
     2569      return(FALSE);
     2570    }
     2571    else
     2572#endif
    25572573#ifdef HAVE_RINGS
    25582574/*==================== Testing groebner basis =================*/
Note: See TracChangeset for help on using the changeset viewer.