Changeset 301af2 in git


Ignore:
Timestamp:
Jun 2, 2007, 3:28:22 PM (17 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
3a67ea7637bbe5c19cff4387511dc0887befa1d0
Parents:
7d9dab9f7a593c8d9d7130470cc6223b842425eb
Message:
*levandov: freegb handle introduced


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r7d9dab r301af2  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.255 2007-05-15 13:55:00 Singular Exp $ */
     4/* $Id: extra.cc,v 1.256 2007-06-02 13:28:22 levandov Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    114114
    115115#include "fast_maps.h"
     116
     117/* #include "shiftgb.h" */
    116118
    117119#ifdef HAVE_EIGENVAL
     
    27022704    }
    27032705    else
     2706/*==================== freeGB, twosided GB in free algebra =================*/
     2707    if (strcmp(sys_cmd, "freegb") == 0)
     2708    {
     2709      ideal I;
     2710      int uptodeg, lVblock;
     2711      if ((h!=NULL) && (h->Typ()==IDEAL_CMD))
     2712      {
     2713        I=(ideal)h->CopyD();
     2714        h=h->next;
     2715      }
     2716      else return TRUE;
     2717      if ((h!=NULL) && (h->Typ()==INT_CMD))
     2718      {
     2719        uptodeg=(int)((long)(h->Data()));
     2720        h=h->next;
     2721      }
     2722      else return TRUE;
     2723      if ((h!=NULL) && (h->Typ()==INT_CMD))
     2724      {
     2725        lVblock=(int)((long)(h->Data()));
     2726        //      res->data = freegb(I,uptodeg,lVblock);
     2727        //      res->rtyp = IDEAL_CMD;
     2728      }
     2729      else return TRUE;
     2730      return FALSE;
     2731    }
     2732    else
    27042733#endif
    27052734/*==================== t-rep-GB ==================================*/
Note: See TracChangeset for help on using the changeset viewer.