~ubuntu-branches/ubuntu/precise/igraph/precise

« back to all changes in this revision

Viewing changes to src/foreign-lgl-parser.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2011-03-16 23:42:10 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110316234210-qemm8n2yfk0srsw1
Tags: 0.5.4-1
* New upstream.

* control: Change depends libgmp3-dev --> libgmp-dev.  Update
  Standards-Version to 3.9.1.

* rules: empty out dependency_libs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.3.  */
 
1
 
 
2
/* A Bison parser, made by GNU Bison 2.4.1.  */
2
3
 
3
4
/* Skeleton interface for Bison's Yacc-like parsers in C
4
 
 
5
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
 
5
   
 
6
      Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6
7
   Free Software Foundation, Inc.
7
 
 
8
 
   This program is free software; you can redistribute it and/or modify
 
8
   
 
9
   This program is free software: you can redistribute it and/or modify
9
10
   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
 
 
 
11
   the Free Software Foundation, either version 3 of the License, or
 
12
   (at your option) any later version.
 
13
   
13
14
   This program is distributed in the hope that it will be useful,
14
15
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
16
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
17
   GNU General Public License for more details.
17
 
 
 
18
   
18
19
   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.  */
 
20
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
22
21
 
23
22
/* As a special exception, you may create a larger work that contains
24
23
   part or all of the Bison parser skeleton and distribute that work
29
28
   special exception, which will cause the skeleton and the resulting
30
29
   Bison output files to be licensed under the GNU General Public
31
30
   License without this special exception.
32
 
 
 
31
   
33
32
   This special exception was added by the Free Software Foundation in
34
33
   version 2.2 of Bison.  */
35
34
 
 
35
 
36
36
/* Tokens.  */
37
37
#ifndef YYTOKENTYPE
38
38
# define YYTOKENTYPE
54
54
 
55
55
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
56
56
typedef union YYSTYPE
 
57
{
 
58
 
 
59
/* Line 1676 of yacc.c  */
57
60
#line 70 "foreign-lgl-parser.y"
58
 
{
 
61
 
59
62
  long int edgenum;
60
63
  double weightnum;
61
 
}
62
 
/* Line 1489 of yacc.c.  */
63
 
#line 64 "foreign-lgl-parser.h"
64
 
        YYSTYPE;
 
64
 
 
65
 
 
66
 
 
67
/* Line 1676 of yacc.c  */
 
68
#line 69 "foreign-lgl-parser.h"
 
69
} YYSTYPE;
 
70
# define YYSTYPE_IS_TRIVIAL 1
65
71
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
66
72
# define YYSTYPE_IS_DECLARED 1
67
 
# define YYSTYPE_IS_TRIVIAL 1
68
73
#endif
69
74
 
70
75
extern YYSTYPE igraph_lgl_yylval;
71
76
 
 
77