Changeset bd2b93 in git for Singular/extra.cc


Ignore:
Timestamp:
Jul 12, 1999, 1:05:57 PM (25 years ago)
Author:
Wilfred Pohl <pohl@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
0a5f342e03dda534e299aecb4e831f39b5569cd7
Parents:
a86bd56f61fbcd8c253ba5bc70325f291651b90a
Message:
exclude barstep


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    ra86bd5 rbd2b93  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.95 1999-07-08 10:18:07 wenk Exp $ */
     4/* $Id: extra.cc,v 1.96 1999-07-12 11:05:57 pohl Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    658658    else
    659659#endif
    660 /*==================== barstep =============================*/
    661     if(strcmp(sys_cmd,"barstep")==0)
    662     {
    663       if ((h!=NULL) &&(h->Typ()==MATRIX_CMD))
    664       {
    665         if (h->next!=NULL)
    666         {
    667           if (h->next->Typ()!=POLY_CMD)
    668           {
    669             Warn("Wrong types for barstep(matrix,poly)");
    670           }
    671         }
    672         int r,c;
    673         poly div=(poly)h->next->Data();
    674         res->rtyp=MATRIX_CMD;
    675         res->data=(void *)mpOneStepBareiss((matrix)h->Data(),
    676                                            &div,&r,&c);
    677         PrintS("div: ");pWrite(div);
    678         Print("rows: %d, cols: %d\n",r,c);
    679         pDelete(&div);
    680         return FALSE;
    681       }
    682       else
    683         WerrorS("matrix expected");
    684     }
    685     else
    686660#ifdef FACTORY_GCD_TEST
    687661/*=======================gcd Testerei ================================*/
Note: See TracChangeset for help on using the changeset viewer.