Changeset 78c048b in git


Ignore:
Timestamp:
May 15, 1998, 6:03:52 PM (26 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
779b9b7027631ab801b2b12ff6a451246abe4541
Parents:
3f3b8c7d1a578d4ad1104e2779ad891d6385526d
Message:
* hanens:added type conversion: ideal(map) -> map


git-svn-id: file:///usr/local/Singular/svn/trunk@1797 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Singular/ChangeLog

    r3f3b8c7 r78c048b  
     1Fri May 15 18:02:57 MET DST 1998 hannes
     2* added type conversion: ideal(map) -> map
    13Fri May 15 13:06:32 MET DST 1998 hannes
    24* added syntax: kill (....)
  • Singular/feread.cc

    r3f3b8c7 r78c048b  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: feread.cc,v 1.10 1998-04-27 12:34:14 obachman Exp $ */
     4/* $Id: feread.cc,v 1.11 1998-05-15 16:03:49 Singular Exp $ */
    55/*
    66* ABSTRACT: input from ttys, simulating fgets
     
    394394          if (i==0) break;
    395395          i--;
     396          fputc('\b',fe_echo);
     397          fputc(' ',fe_echo);
    396398          fputc('\b',fe_echo);
    397399          fflush(fe_echo);
  • Singular/iparith.cc

    r3f3b8c7 r78c048b  
    23902390  return FALSE;
    23912391}
     2392static BOOLEAN jjIDEAL_Map(leftv res, leftv v)
     2393{
     2394  map m=(map)v->CopyD();
     2395  FreeL((ADDRESS)m->preimage);
     2396  m->preimage=NULL;
     2397  ideal I=(ideal)m;
     2398  I->rank=1;
     2399  res->data=(char *)I;
     2400  return FALSE;
     2401}
    23922402static BOOLEAN jjIDEAL_R(leftv res, leftv v)
    23932403{
     
    31483158,{jjIDEAL_R,    IDEAL_CMD,       IDEAL_CMD,      QRING_CMD }
    31493159,{jjIDEAL_R,    IDEAL_CMD,       IDEAL_CMD,      RING_CMD }
     3160,{jjIDEAL_Map,  IDEAL_CMD,       IDEAL_CMD,      MAP_CMD }
    31503161,{jjDUMMY,      IDEAL_CMD,       IDEAL_CMD,      IDEAL_CMD }
    31513162,{jjINDEPSET,   INDEPSET_CMD,    INTVEC_CMD,     IDEAL_CMD }
  • Singular/ipconv.cc

    r3f3b8c7 r78c048b  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipconv.cc,v 1.8 1998-04-01 18:58:28 Singular Exp $ */
     4/* $Id: ipconv.cc,v 1.9 1998-05-15 16:03:52 Singular Exp $ */
    55/*
    66* ABSTRACT: automatic type conversions
     
    184184
    185185//
    186 // conversions:
     186// automatic conversions:
    187187//
    188188struct sConvertTypes dConvertTypes[] =
Note: See TracChangeset for help on using the changeset viewer.