~ubuntu-branches/ubuntu/trusty/scotch/trusty-proposed

« back to all changes in this revision

Viewing changes to src/libscotch/last_resort/parser_ly.h

  • Committer: Bazaar Package Importer
  • Author(s): "Adam C. Powell, IV", Christophe Trophime, Adam C. Powell, IV
  • Date: 2010-12-29 13:07:19 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20101229130719-jwalolw5d6av6wqx
Tags: 5.1.11.dfsg-1
[Christophe Trophime]
* New upstream release
* Forward-ported patches to version 5.1.10b.
* Install scotch headers properly.
* Fix chrpath commands in debian/rules.
* Fix (pt)scotch library install paths.
* Fix lintian errors and warnings.

[Adam C. Powell, IV]
* Forward-ported patches to version 5.1.11.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.3.  */
 
1
/* A Bison parser, made by GNU Bison 2.4.2.  */
2
2
 
3
3
/* Skeleton interface for Bison's Yacc-like parsers in C
4
 
 
5
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6
 
   Free Software Foundation, Inc.
7
 
 
8
 
   This program is free software; you can redistribute it and/or modify
 
4
   
 
5
      Copyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free Software
 
6
   Foundation, Inc.
 
7
   
 
8
   This program is free software: you can redistribute it and/or modify
9
9
   it under the terms of the GNU General Public License as published by
10
 
   the Free Software Foundation; either version 2, or (at your option)
11
 
   any later version.
12
 
 
 
10
   the Free Software Foundation, either version 3 of the License, or
 
11
   (at your option) any later version.
 
12
   
13
13
   This program is distributed in the hope that it will be useful,
14
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
16
   GNU General Public License for more details.
17
 
 
 
17
   
18
18
   You should have received a copy of the GNU General Public License
19
 
   along with this program; if not, write to the Free Software
20
 
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
21
 
   Boston, MA 02110-1301, USA.  */
 
19
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
22
20
 
23
21
/* As a special exception, you may create a larger work that contains
24
22
   part or all of the Bison parser skeleton and distribute that work
29
27
   special exception, which will cause the skeleton and the resulting
30
28
   Bison output files to be licensed under the GNU General Public
31
29
   License without this special exception.
32
 
 
 
30
   
33
31
   This special exception was added by the Free Software Foundation in
34
32
   version 2.2 of Bison.  */
35
33
 
 
34
 
36
35
/* Tokens.  */
37
36
#ifndef YYTOKENTYPE
38
37
# define YYTOKENTYPE
66
65
 
67
66
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
68
67
typedef union YYSTYPE
69
 
#line 96 "parser_yy.y"
70
68
{
 
69
 
 
70
/* Line 1685 of yacc.c  */
 
71
#line 90 "parser_yy.y"
 
72
 
71
73
  char                      CASEVAL;              /* Case value          */
72
74
  StratTest *               TEST;                 /* Test type           */
73
75
  StratTestType             TESTOP;               /* Relational type     */
80
82
    StratParamTab *         param;                /* Current parameter */
81
83
  } SAVE;                                         /* Parameter type    */
82
84
  Strat *                   STRAT;                /* Strategy tree     */
83
 
}
84
 
/* Line 1489 of yacc.c.  */
85
 
#line 86 "y.tab.h"
86
 
        YYSTYPE;
 
85
 
 
86
 
 
87
 
 
88
/* Line 1685 of yacc.c  */
 
89
#line 90 "y.tab.h"
 
90
} YYSTYPE;
 
91
# define YYSTYPE_IS_TRIVIAL 1
87
92
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
88
93
# define YYSTYPE_IS_DECLARED 1
89
 
# define YYSTYPE_IS_TRIVIAL 1
90
94
#endif
91
95
 
92
 
extern YYSTYPE yylval;
 
96
extern YYSTYPE scotchyylval;
 
97
 
93
98