source: git/Singular/mpsr_Tok.h @ 400884

spielwiese
Last change on this file since 400884 was 6ae4f5, checked in by Hans Schönemann <hannes@…>, 27 years ago
* hannes: - corrected scanner.l: parsing of strings in blocks: if (1) { write("","}"); } - corrected ipassign.cc: assignment of "dummy" types: DEF, NONE - corrected sleftv::Print(_), initialisation of _ - added conversion int->def - added CopyD(DEF) - in insert(..): object should not be of type NONE (lists.cc:lInsert0) - added int*intvec, int*intmat to iparith.cc git-svn-id: file:///usr/local/Singular/svn/trunk@145 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 956 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id: mpsr_Tok.h,v 1.2 1997-04-09 12:20:05 Singular Exp $ */
5
6/***************************************************************
7 *
8 * File:       mpsr_Tok.h
9 * Purpose:    Routines which realize Singular CMD <-> MP (dict, cop) mappings
10 * Author:     Olaf Bachmann (1/97)
11 *
12 * Change History (most recent first):
13 *
14 ***************************************************************/
15#ifndef __MPSR_TOK_H__
16#define __MPSR_TOK_H__
17#include"mpsr.h"
18
19extern mpsr_Status_t mpsr_tok2mp(short tok, MP_DictTag_t *dict,
20                               MP_Common_t *cop);
21
22extern mpsr_Status_t mpsr_mp2tok(MP_DictTag_t dict, MP_Common_t cop,
23                               short *o_tok);
24
25extern MP_Common_t mpsr_ord2mp(int sr_ord);
26extern short mpsr_mp2ord(MP_Common_t mp_ord);
27
28#define MP_AnnotSingularProcDef 1
29#endif  // __MPSR_TOK_H__
Note: See TracBrowser for help on using the repository browser.