hp2FEM
0.1
|
00001 /* A Bison parser, made by GNU Bison 2.5. */ 00002 00003 /* Bison interface for Yacc-like parsers in C 00004 00005 Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. 00006 00007 This program is free software: you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by 00009 the Free Software Foundation, either version 3 of the License, or 00010 (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00019 00020 /* As a special exception, you may create a larger work that contains 00021 part or all of the Bison parser skeleton and distribute that work 00022 under terms of your choice, so long as that work isn't itself a 00023 parser generator using the skeleton or a modified version thereof 00024 as a parser skeleton. Alternatively, if you modify or redistribute 00025 the parser skeleton itself, you may (at your option) remove this 00026 special exception, which will cause the skeleton and the resulting 00027 Bison output files to be licensed under the GNU General Public 00028 License without this special exception. 00029 00030 This special exception was added by the Free Software Foundation in 00031 version 2.2 of Bison. */ 00032 00033 00034 /* Tokens. */ 00035 #ifndef YYTOKENTYPE 00036 # define YYTOKENTYPE 00037 /* Put the tokens into the symbol table, so that GDB and other debuggers 00038 know about them. */ 00039 enum yytokentype { 00040 NUMBER = 258, 00041 PI = 259, 00042 VARIABLE = 260, 00043 PLUS = 261, 00044 MINUS = 262, 00045 MULTIPLY = 263, 00046 DIVIDE = 264, 00047 POWER = 265, 00048 SQRT = 266, 00049 SIN = 267, 00050 COS = 268, 00051 TAN = 269, 00052 LOG = 270, 00053 LN = 271, 00054 EXP = 272, 00055 EQUAL = 273, 00056 LEFT_PARENTHESIS = 274, 00057 RIGHT_PARENTHESIS = 275, 00058 NEW_LINE = 276, 00059 END = 277, 00060 NEG = 278 00061 }; 00062 #endif 00063 /* Tokens. */ 00064 #define NUMBER 258 00065 #define PI 259 00066 #define VARIABLE 260 00067 #define PLUS 261 00068 #define MINUS 262 00069 #define MULTIPLY 263 00070 #define DIVIDE 264 00071 #define POWER 265 00072 #define SQRT 266 00073 #define SIN 267 00074 #define COS 268 00075 #define TAN 269 00076 #define LOG 270 00077 #define LN 271 00078 #define EXP 272 00079 #define EQUAL 273 00080 #define LEFT_PARENTHESIS 274 00081 #define RIGHT_PARENTHESIS 275 00082 #define NEW_LINE 276 00083 #define END 277 00084 #define NEG 278 00085 00086 00087 00088 00089 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED 00090 typedef int YYSTYPE; 00091 # define YYSTYPE_IS_TRIVIAL 1 00092 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ 00093 # define YYSTYPE_IS_DECLARED 1 00094 #endif 00095 00096 extern YYSTYPE yylval; 00097 00098