Changeset 7b3094 in git for Singular/tok.h


Ignore:
Timestamp:
Jan 11, 2000, 6:51:15 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
3a62db15459fcfd405979f894c67de77e0ff1e84
Parents:
ba8c0bced42227f9c29f470c292a51ab29c2a405
Message:
*hannes: optimization of grammar


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

Legend:

Unmodified
Added
Removed
  • Singular/tok.h

    rba8c0b r7b3094  
    77* ABSTRACT: tokens, types for interpreter; general macros
    88*/
    9 /* $Id: tok.h,v 1.35 1999-12-21 11:44:01 Singular Exp $ */
     9/* $Id: tok.h,v 1.36 2000-01-11 17:51:15 Singular Exp $ */
    1010
    1111#ifndef MYYSTYPE
     
    3636#define min(A,B) ((A) < (B) ? (A) : (B))
    3737#endif
     38
     39/* the follwing defines for infix operators should not be changed: *
     40*  grammar.y does not use the symbolic names                       *
     41*  scanner.l uses the identies for some optimzations              */
     42#define LOGIC_OP         '&'
     43#define MULDIV_OP        '/'
     44#define COMP_OP          '<'
    3845
    3946#define COMMAND           UMINUS+2 /* in tok.h */
Note: See TracChangeset for help on using the changeset viewer.