Changeset 64eef3 in git for Singular/extra.cc


Ignore:
Timestamp:
Sep 7, 2000, 3:46:25 PM (24 years ago)
Author:
Imade Sulandra <sulandra@…>
Branches:
(u'spielwiese', '6e5adcba05493683b94648c659a729c189812c77')
Children:
38545c55d5c9c90b6026900ffca6ee04e394a114
Parents:
8472420cfacdae6a03a6fbaffea32033aaf0de86
Message:
*** empty log message ***


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

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r847242 r64eef3  
    22*  Computer Algebra System SINGULAR      *
    33*****************************************/
    4 /* $Id: extra.cc,v 1.141 2000-09-07 13:39:43 sulandra Exp $ */
     4/* $Id: extra.cc,v 1.142 2000-09-07 13:46:25 sulandra Exp $ */
    55/*
    66* ABSTRACT: general interface to internals of Singular ("system" command)
     
    11831183    }
    11841184    else
    1185 /*==================== new walk stuff =================*/
    1186     if (strcmp(sys_cmd, "walkAddIntvec") == 0)
    1187     {
    1188       if (h == NULL || h->Typ() != INTVEC_CMD ||
    1189           h->next == NULL || h->next->Typ() != INTVEC_CMD)
    1190       {
    1191         Werror("walkAddIntvec: arguments are wrong");
    1192         return TRUE;
    1193       }
    1194       intvec* v1 = (intvec*) h->Data();
    1195       intvec* v2 = (intvec*) h->Data();
    1196       intvec* result = walkAddIntVec(v1, v2);
    1197       res->rtyp = INTVEC_CMD;
    1198       res->data = (void*) result;
    1199       return FALSE;
    1200     }
    1201     else
    12021185#ifdef HAVE_WALK
    12031186/*==================== walk stuff =================*/
Note: See TracChangeset for help on using the changeset viewer.