Changeset 3ebd198 in git for Singular/ipconv.cc


Ignore:
Timestamp:
Apr 1, 1998, 8:58:28 PM (26 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
7b5d0ac8638c452340129768345df9898e7a9ea8
Parents:
bf34aed195ab7ded54d6f3b23dde89a23574a0c8
Message:
* hannes: iparith.cc ipconv.cc: added conversion list <-> resolution


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

Legend:

Unmodified
Added
Removed
  • Singular/ipconv.cc

    rbf34ae r3ebd198  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipconv.cc,v 1.7 1997-08-11 15:53:18 Singular Exp $ */
     4/* $Id: ipconv.cc,v 1.8 1998-04-01 18:58:28 Singular Exp $ */
    55/*
    66* ABSTRACT: automatic type conversions
     
    168168}
    169169
     170#if defined(INIT_BUG) || defined(PROC_BUG)
    170171static void * iiR2L(void * data)
    171172{
    172173  return (void *)syConvRes((syStrategy)data); 
    173174}
     175
     176static void * iiL2R(void * data)
     177{
     178  return (void *)syConvList((lists)data); 
     179}
     180#else
     181#define iiR2L (iiConvertProc)syConvRes
     182#define iiL2R (iiConvertProc)syConvList
     183#endif
    174184
    175185//
     
    229239// resolution -> list   
    230240   { RESOLUTION_CMD,  LIST_CMD,       iiR2L },
     241// list -> resolution
     242   { LIST_CMD,        RESOLUTION_CMD, iiL2R },
    231243//  end of list
    232244   { 0,               0,              NULL }
Note: See TracChangeset for help on using the changeset viewer.