ergo
ergo_input_processor.h
Go to the documentation of this file.
1#ifndef _yy_defines_h_
2#define _yy_defines_h_
3
4#define NUMBER 257
5#define DOT 258
6#define SYMBOL 259
7#define EQUAL 260
8#define STRING 261
9#define EOFTAG 262
10#define GETEXC 263
11#define GETPOL 264
12#define K_ALL 265
13#define HELP 266
14#define MOLTAG 267
15#define GHOSTTAG 268
16#define MOLDAL 269
17#define QUIT 270
18#define RUNTAG 271
19#define SYSTEM 272
20#define GHOST 273
21#define ANGSTROM 274
22#define PRECISION 275
23#define RANGE 276
24#define WARRANTY 277
25#define LIST_DFT_FUNCS 278
26#define IS_CHT_USED 279
27#define SET_NTHREADS 280
28#define PLUS 281
29#define MINUS 282
30#define TIMES 283
31#define DIVIDE 284
32#define POWER 285
33#define LEFT_PARENTHESIS 286
34#define RIGHT_PARENTHESIS 287
35#define EOL 288
36#define NEG 289
37#ifdef YYSTYPE
38#undef YYSTYPE_IS_DECLARED
39#define YYSTYPE_IS_DECLARED 1
40#endif
41#ifndef YYSTYPE_IS_DECLARED
42#define YYSTYPE_IS_DECLARED 1
43typedef union YYSTYPE {
44 double num; /* for returning numbers */
45 char str[256]; /* for returning strings */
46 struct variable *var; /* for returning lvalues */
48#endif /* !YYSTYPE_IS_DECLARED */
49extern YYSTYPE yylval;
50
51#endif /* _yy_defines_h_ */
YYSTYPE yylval
Definition: ergo_input_processor.c:395
describes a variable recognized by the scripting system.
Definition: ergo_scripted.h:54
Definition: ergo_input_processor.c:45
struct variable * var
Definition: ergo_input_processor.c:48
double num
Definition: ergo_input_processor.c:46
char str[256]
Definition: ergo_input_processor.c:47