/* Copyright (c) 2012-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ %{ #include "automaton_lexer.yy.c" #include void yyerror(const char *s); %} %union{ double real; int integer; char* string; xbt_automaton_exp_label_t label; } %token NEVER %token IF %token FI %token IMPLIES %token GOTO %token AND %token OR %token NOT %token LEFT_PAR %token RIGHT_PAR %token CASE %token COLON %token SEMI_COLON %token CASE_TRUE %token LEFT_BRACE %token RIGHT_BRACE %token LITT_ENT %token LITT_CHAINE %token LITT_REEL %token ID %type