From e9cd05678dc2dbf7bf10dde99e1df5ff898ea890 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Sat, 6 Apr 2002 00:59:49 +0000 Subject: [PATCH] An ellipse is an ellipse, not an ellipsis ! --- Common/DefaultOptions.h | 2 +- Fltk/Callbacks.cpp | 4 +- Fltk/Callbacks.h | 2 +- Fltk/GUI.cpp | 4 +- Geo/Geo.cpp | 4 +- Geo/Print_Geo.cpp | 4 +- Geo/StepGeomDatabase.cpp | 4 +- Geo/StepGeomDatabase.h | 2 +- Mesh/2D_Mesh_Aniso.cpp | 8 +- Mesh/Create.cpp | 6 +- Mesh/Metric.cpp | 4 +- Mesh/Simplex.cpp | 4 +- Mesh/Simplex.h | 2 +- Parser/Gmsh.l | 5 +- Parser/Gmsh.tab.cpp | 8 +- Parser/Gmsh.tab.cpp.h | 2 +- Parser/Gmsh.y | 8 +- Parser/Gmsh.yy.cpp | 1369 +++++++++++++++++++------------------- 18 files changed, 724 insertions(+), 718 deletions(-) diff --git a/Common/DefaultOptions.h b/Common/DefaultOptions.h index 3b2ebde643..e2ce9ede48 100644 --- a/Common/DefaultOptions.h +++ b/Common/DefaultOptions.h @@ -551,7 +551,7 @@ StringXNumber GeometryOptions_Number[] = { "Should all duplicate entities be automatically removed?" }, { F|O, "CirclePoints" , opt_geometry_circle_points, 20. , - "Number of points used to draw a circle/ellipsis" }, + "Number of points used to draw a circle/ellipse" }, { F|O, "ColorScheme" , opt_geometry_color_scheme , 0. , "Default geometry color scheme (0, 1 or 2)" }, diff --git a/Fltk/Callbacks.cpp b/Fltk/Callbacks.cpp index 2dc1794807..1a4faa1db0 100644 --- a/Fltk/Callbacks.cpp +++ b/Fltk/Callbacks.cpp @@ -1,4 +1,4 @@ -// $Id: Callbacks.cpp,v 1.113 2002-03-31 00:50:39 geuzaine Exp $ +// $Id: Callbacks.cpp,v 1.114 2002-04-06 00:59:48 geuzaine Exp $ #include <sys/types.h> #include <signal.h> @@ -1000,7 +1000,7 @@ void geometry_elementary_add_new_circle_cb(CALLBACK_ARGS){ } Msg(STATUS3N,"Ready"); } -void geometry_elementary_add_new_ellipsis_cb(CALLBACK_ARGS){ +void geometry_elementary_add_new_ellipse_cb(CALLBACK_ARGS){ Vertex *v; Curve *c; Surface *s; diff --git a/Fltk/Callbacks.h b/Fltk/Callbacks.h index 5d4912afd9..733b0364bb 100644 --- a/Fltk/Callbacks.h +++ b/Fltk/Callbacks.h @@ -120,7 +120,7 @@ void geometry_elementary_add_new_line_cb(CALLBACK_ARGS) ; void geometry_elementary_add_new_spline_cb(CALLBACK_ARGS) ; void geometry_elementary_add_new_bspline_cb(CALLBACK_ARGS) ; void geometry_elementary_add_new_circle_cb(CALLBACK_ARGS) ; -void geometry_elementary_add_new_ellipsis_cb(CALLBACK_ARGS) ; +void geometry_elementary_add_new_ellipse_cb(CALLBACK_ARGS) ; void geometry_elementary_add_new_planesurface_cb(CALLBACK_ARGS) ; void geometry_elementary_add_new_ruledsurface_cb(CALLBACK_ARGS) ; void geometry_elementary_add_new_volume_cb(CALLBACK_ARGS) ; diff --git a/Fltk/GUI.cpp b/Fltk/GUI.cpp index e90cc090d4..986bcaba4f 100644 --- a/Fltk/GUI.cpp +++ b/Fltk/GUI.cpp @@ -1,4 +1,4 @@ -// $Id: GUI.cpp,v 1.161 2002-03-31 00:50:39 geuzaine Exp $ +// $Id: GUI.cpp,v 1.162 2002-04-06 00:59:48 geuzaine Exp $ // To make the interface as visually consistent as possible, please: // - use the IW, BB, BH, BW and WB values @@ -145,7 +145,7 @@ Context_Item menu_geometry[] = { "Spline", (Fl_Callback *)geometry_elementary_add_new_spline_cb } , { "B-Spline", (Fl_Callback *)geometry_elementary_add_new_bspline_cb } , { "Circle", (Fl_Callback *)geometry_elementary_add_new_circle_cb } , - { "Ellipsis", (Fl_Callback *)geometry_elementary_add_new_ellipsis_cb } , + { "Ellipse", (Fl_Callback *)geometry_elementary_add_new_ellipse_cb } , { "Plane surface", (Fl_Callback *)geometry_elementary_add_new_planesurface_cb } , { "Ruled surface", (Fl_Callback *)geometry_elementary_add_new_ruledsurface_cb } , { "Volume", (Fl_Callback *)geometry_elementary_add_new_volume_cb } , diff --git a/Geo/Geo.cpp b/Geo/Geo.cpp index 77a05f9e2a..c359a14f68 100644 --- a/Geo/Geo.cpp +++ b/Geo/Geo.cpp @@ -1,4 +1,4 @@ -// $Id: Geo.cpp,v 1.24 2001-11-05 08:36:49 geuzaine Exp $ +// $Id: Geo.cpp,v 1.25 2002-04-06 00:59:48 geuzaine Exp $ #include "Gmsh.h" #include "Numeric.h" @@ -229,7 +229,7 @@ void add_circ(int p1, int p2, int p3, char *fich){ void add_ell(int p1, int p2, int p3, int p4, char *fich){ char text[BUFFSIZE]; - sprintf(text,"Ellipsis(%d) = {%d,%d,%d,%d};",NEWLINE(),p1,p2,p3,p4); + sprintf(text,"Ellipse(%d) = {%d,%d,%d,%d};",NEWLINE(),p1,p2,p3,p4); add_infile(text,fich); } diff --git a/Geo/Print_Geo.cpp b/Geo/Print_Geo.cpp index 18f86568fa..438ebcc72e 100644 --- a/Geo/Print_Geo.cpp +++ b/Geo/Print_Geo.cpp @@ -1,4 +1,4 @@ -// $Id: Print_Geo.cpp,v 1.23 2001-11-19 09:29:18 geuzaine Exp $ +// $Id: Print_Geo.cpp,v 1.24 2002-04-06 00:59:48 geuzaine Exp $ #include "Gmsh.h" #include "Geo.h" @@ -58,7 +58,7 @@ void Print_Curve(void *a, void *b){ break; case MSH_SEGM_ELLI: case MSH_SEGM_ELLI_INV: - fprintf(FOUT,"Ellipsis (%d) = ",c->Num); + fprintf(FOUT,"Ellipse (%d) = ",c->Num); break; case MSH_SEGM_NURBS: Print_Nurbs(c,FOUT); diff --git a/Geo/StepGeomDatabase.cpp b/Geo/StepGeomDatabase.cpp index 913f4c49ea..c69a7a5978 100644 --- a/Geo/StepGeomDatabase.cpp +++ b/Geo/StepGeomDatabase.cpp @@ -1,4 +1,4 @@ -// $Id: StepGeomDatabase.cpp,v 1.6 2001-08-11 23:28:31 geuzaine Exp $ +// $Id: StepGeomDatabase.cpp,v 1.7 2002-04-06 00:59:48 geuzaine Exp $ #include "Gmsh.h" #include "Numeric.h" @@ -175,7 +175,7 @@ void Add_Circle (int Num, char *name , int axis, double radius){ List_Add(BREP->AllCurves,&Curve); } -void Add_Ellipsis (int Num, char *name , int axis, double radius1, double radius2){ +void Add_Ellipse (int Num, char *name , int axis, double radius1, double radius2){ Step_Curve_t Curve; if(!BREP)return; Curve.Num = Num; diff --git a/Geo/StepGeomDatabase.h b/Geo/StepGeomDatabase.h index f01f018c62..31cd2ff703 100644 --- a/Geo/StepGeomDatabase.h +++ b/Geo/StepGeomDatabase.h @@ -176,7 +176,7 @@ void Add_Cartesian_Point (int Num, char *name, double x, double y, double z); void Add_Vertex_Point (int Num, char *name, int cp); void Add_Line (int Num, char *name, int begin, int dir); void Add_Circle (int Num, char *name, int axis, double Radius); -void Add_Ellipsis (int Num, char *name, int axis, double Radius, double r2); +void Add_Ellipse (int Num, char *name, int axis, double Radius, double r2); void Add_Cylinder (int Num, char *name, int axis, double Radius); void Add_Torus (int Num, char *name, int axis, double radius1, double radius2); void Add_Cone (int Num, char *name, int axis, double radius1, double radius2); diff --git a/Mesh/2D_Mesh_Aniso.cpp b/Mesh/2D_Mesh_Aniso.cpp index 2ed6069ebc..cb406a266e 100644 --- a/Mesh/2D_Mesh_Aniso.cpp +++ b/Mesh/2D_Mesh_Aniso.cpp @@ -1,4 +1,4 @@ -// $Id: 2D_Mesh_Aniso.cpp,v 1.24 2002-02-16 14:14:47 remacle Exp $ +// $Id: 2D_Mesh_Aniso.cpp,v 1.25 2002-04-06 00:59:48 geuzaine Exp $ /* Jean-Francois Remacle @@ -434,7 +434,7 @@ void Action_First_Simplexes_2D (void *a, void *b){ if (!THES){ q = *(Simplex **) a; - if (q->Pt_In_Ellipsis (THEV, THEM->Metric->m)){ + if (q->Pt_In_Ellipse (THEV, THEM->Metric->m)){ THES = q; } } @@ -443,7 +443,7 @@ void Action_First_Simplexes_2D (void *a, void *b){ void Fill_Sim_Des_2D (void *a, void *b){ Simplex *S; S = *(Simplex **) a; - if (S->Pt_In_Ellipsis (THEV, THEM->Metric->m)) + if (S->Pt_In_Ellipse (THEV, THEM->Metric->m)) List_Add (Simplexes_Destroyed, a); } @@ -513,7 +513,7 @@ int recur_bowyer_2D (Simplex * s){ Tree_Insert (Tsd, &s); for (i = 0; i < 3; i++){ if (s->S[i] && s->S[i] != &MyNewBoundary && !Tree_Query (Tsd, &s->S[i])){ - if (s->S[i]->Pt_In_Ellipsis (THEV, THEM->Metric->m) && (s->iEnt == s->S[i]->iEnt)){ + if (s->S[i]->Pt_In_Ellipse (THEV, THEM->Metric->m) && (s->iEnt == s->S[i]->iEnt)){ recur_bowyer_2D (s->S[i]); } else{ diff --git a/Mesh/Create.cpp b/Mesh/Create.cpp index c6638c9585..98dcd5be1c 100644 --- a/Mesh/Create.cpp +++ b/Mesh/Create.cpp @@ -1,4 +1,4 @@ -// $Id: Create.cpp,v 1.35 2002-03-12 19:07:32 geuzaine Exp $ +// $Id: Create.cpp,v 1.36 2002-04-06 00:59:48 geuzaine Exp $ #include "Gmsh.h" #include "Numeric.h" @@ -291,7 +291,7 @@ void End_Curve (Curve * c){ R2 = sqrt(v2.Pos.X * v2.Pos.X + v2.Pos.Y * v2.Pos.Y); if(!R || !R2) // check radius - Msg(GERROR, "Zero radius in Circle/Ellipsis %d", c->Num); + Msg(GERROR, "Zero radius in Circle/Ellipse %d", c->Num); else if(!v[3] && fabs((R-R2)/(R+R2))>0.1) // check cocircular pts (allow 10% error) Msg(GERROR, "Control points of Circle %d are not cocircular %g %g", c->Num, R,R2); @@ -314,7 +314,7 @@ void End_Curve (Curve * c){ rhs[1] = 1; sys2x2 (sys, rhs, sol); if(sol[0] <= 0 || sol[1] <= 0){ - Msg(GERROR, "Ellipsis %d is wrong", Curve->Num); + Msg(GERROR, "Ellipse %d is wrong", Curve->Num); A1 = A3 = 0.; f1 = f2 = R ; } diff --git a/Mesh/Metric.cpp b/Mesh/Metric.cpp index 3166214096..30efe3ee1a 100644 --- a/Mesh/Metric.cpp +++ b/Mesh/Metric.cpp @@ -1,4 +1,4 @@ -// $Id: Metric.cpp,v 1.10 2002-02-16 14:14:47 remacle Exp $ +// $Id: Metric.cpp,v 1.11 2002-04-06 00:59:48 geuzaine Exp $ #include <time.h> #include "Gmsh.h" #include "Numeric.h" @@ -224,7 +224,7 @@ setMetric (double u, double v, Surface * s) { - double a, b, c; // ellipsis axx+byy+cxy=1 + double a, b, c; // ellipse axx+byy+cxy=1 double l1, l2; // 2 eigenvalues Identity (); diff --git a/Mesh/Simplex.cpp b/Mesh/Simplex.cpp index 084019e08e..3ee96e69be 100644 --- a/Mesh/Simplex.cpp +++ b/Mesh/Simplex.cpp @@ -1,4 +1,4 @@ -// $Id: Simplex.cpp,v 1.21 2002-02-27 17:15:22 geuzaine Exp $ +// $Id: Simplex.cpp,v 1.22 2002-04-06 00:59:48 geuzaine Exp $ #include "Gmsh.h" #include "Numeric.h" @@ -110,7 +110,7 @@ void Simplex::Center_Circum (){ } } -int Simplex::Pt_In_Ellipsis (Vertex * v, double Metric[3][3]){ +int Simplex::Pt_In_Ellipse (Vertex * v, double Metric[3][3]){ double eps, d1, d2, x[2]; Center_Ellipsum_2D (Metric); diff --git a/Mesh/Simplex.h b/Mesh/Simplex.h index b34cbdc23b..0f74ac0a9f 100644 --- a/Mesh/Simplex.h +++ b/Mesh/Simplex.h @@ -38,7 +38,7 @@ public: double *xc,double *yc); double Volume_Simplexe2D(); void Center_Ellipsum_2D (double m[3][3]); - int Pt_In_Ellipsis (Vertex *v,double m[3][3]); + int Pt_In_Ellipse (Vertex *v,double m[3][3]); bool VertexIn(Vertex *v); bool EdgeIn(Vertex *v1, Vertex *v2, Vertex *v[2]); bool SwapEdge (int iFac); diff --git a/Parser/Gmsh.l b/Parser/Gmsh.l index c40c540a16..07fa1e13ba 100644 --- a/Parser/Gmsh.l +++ b/Parser/Gmsh.l @@ -1,6 +1,6 @@ %{ -// $Id: Gmsh.l,v 1.38 2001-10-30 14:27:48 geuzaine Exp $ +// $Id: Gmsh.l,v 1.39 2002-04-06 00:59:48 geuzaine Exp $ #include <stdio.h> #include <stdlib.h> @@ -124,7 +124,8 @@ Duplicata return tDuplicata; Draw return tDraw; Exp return tExp ; -Ellipsis return tEllipsis; +Ellipsis return tEllipse; +Ellipse return tEllipse; Extrude return tExtrude; Elliptic return tElliptic; ELLIPSE return tELLIPSE; diff --git a/Parser/Gmsh.tab.cpp b/Parser/Gmsh.tab.cpp index 2594614cb0..f2b4f3503f 100644 --- a/Parser/Gmsh.tab.cpp +++ b/Parser/Gmsh.tab.cpp @@ -41,7 +41,7 @@ #define tDraw 291 #define tPoint 292 #define tCircle 293 -#define tEllipsis 294 +#define tEllipse 294 #define tLine 295 #define tSurface 296 #define tSpline 297 @@ -177,7 +177,7 @@ #line 1 "Gmsh.y" -// $Id: Gmsh.tab.cpp,v 1.136 2002-03-12 19:07:32 geuzaine Exp $ +// $Id: Gmsh.tab.cpp,v 1.137 2002-04-06 00:59:48 geuzaine Exp $ #include <stdarg.h> #ifndef _NOPLUGIN @@ -667,7 +667,7 @@ static const char * const yytname[] = { "$","error","$undefined.","tDOUBLE", "tLog","tLog10","tSqrt","tSin","tAsin","tCos","tAcos","tTan","tRand","tAtan", "tAtan2","tSinh","tCosh","tTanh","tFabs","tFloor","tCeil","tFmod","tModulo", "tHypot","tPrintf","tSprintf","tStrCat","tStrPrefix","tDraw","tPoint","tCircle", -"tEllipsis","tLine","tSurface","tSpline","tVolume","tCharacteristic","tLength", +"tEllipse","tLine","tSurface","tSpline","tVolume","tCharacteristic","tLength", "tParametric","tElliptic","tPlane","tRuled","tTransfinite","tComplex","tPhysical", "tUsing","tBump","tProgression","tPlugin","tRotate","tTranslate","tSymmetry", "tDilate","tExtrude","tDuplicata","tLoop","tRecombine","tDelete","tCoherence", @@ -3453,7 +3453,7 @@ case 44: case 45: #line 345 "Gmsh.y" { - Add_Ellipsis((int) yyvsp[-12].d, yyvsp[-8].c, (int) yyvsp[-6].d, yyvsp[-4].d, yyvsp[-2].d); + Add_Ellipse((int) yyvsp[-12].d, yyvsp[-8].c, (int) yyvsp[-6].d, yyvsp[-4].d, yyvsp[-2].d); ; break;} case 46: diff --git a/Parser/Gmsh.tab.cpp.h b/Parser/Gmsh.tab.cpp.h index a6aafce65e..97b71bab90 100644 --- a/Parser/Gmsh.tab.cpp.h +++ b/Parser/Gmsh.tab.cpp.h @@ -44,7 +44,7 @@ typedef union { #define tDraw 291 #define tPoint 292 #define tCircle 293 -#define tEllipsis 294 +#define tEllipse 294 #define tLine 295 #define tSurface 296 #define tSpline 297 diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y index 84f581e4d5..2d83b99d9d 100644 --- a/Parser/Gmsh.y +++ b/Parser/Gmsh.y @@ -1,6 +1,6 @@ %{ -// $Id: Gmsh.y,v 1.117 2002-03-12 19:07:33 geuzaine Exp $ +// $Id: Gmsh.y,v 1.118 2002-04-06 00:59:48 geuzaine Exp $ #include <stdarg.h> #ifndef _NOPLUGIN @@ -85,7 +85,7 @@ int PrintListOfDouble(char *format, List_T *list, char *buffer); %token tExp tLog tLog10 tSqrt tSin tAsin tCos tAcos tTan tRand %token tAtan tAtan2 tSinh tCosh tTanh tFabs tFloor tCeil %token tFmod tModulo tHypot tPrintf tSprintf tStrCat tStrPrefix tDraw -%token tPoint tCircle tEllipsis tLine tSurface tSpline tVolume +%token tPoint tCircle tEllipse tLine tSurface tSpline tVolume %token tCharacteristic tLength tParametric tElliptic %token tPlane tRuled tTransfinite tComplex tPhysical %token tUsing tBump tProgression tPlugin @@ -343,7 +343,7 @@ StepDataItem : } | tDOUBLE tAFFECT tELLIPSE '(' tBIGSTR ',' tDOUBLE ',' FExpr ',' FExpr ')' tEND { - Add_Ellipsis((int) $1, $5, (int) $7, $9, $11); + Add_Ellipse((int) $1, $5, (int) $7, $9, $11); } | tDOUBLE tAFFECT tTRIMMED_CURVE '(' tBIGSTR ',' tDOUBLE ',' ListOfDouble ',' ListOfDouble ',' BoolExpr ',' BoolExpr ')' tEND @@ -1233,7 +1233,7 @@ Shape : $$.Type = MSH_SEGM_CIRC ; $$.Num = (int)$3; } - | tEllipsis '(' FExpr ')' tAFFECT ListOfDouble tEND + | tEllipse '(' FExpr ')' tAFFECT ListOfDouble tEND { Cdbseg101((int)$3,MSH_SEGM_ELLI,2,$6,NULL,-1,-1,0.,1.,NULL,NULL,NULL); $$.Type = MSH_SEGM_ELLI ; diff --git a/Parser/Gmsh.yy.cpp b/Parser/Gmsh.yy.cpp index ee39a22cbf..f577290a9b 100644 --- a/Parser/Gmsh.yy.cpp +++ b/Parser/Gmsh.yy.cpp @@ -2,7 +2,7 @@ /* A lexical scanner generated by flex */ /* Scanner skeleton version: - * $Header: /cvsroot/gmsh/Parser/Gmsh.yy.cpp,v 1.135 2002-03-12 19:07:33 geuzaine Exp $ + * $Header: /cvsroot/gmsh/Parser/Gmsh.yy.cpp,v 1.136 2002-04-06 00:59:49 geuzaine Exp $ */ #define FLEX_SCANNER @@ -283,122 +283,122 @@ static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; -#define YY_NUM_RULES 191 -#define YY_END_OF_BUFFER 192 -static yyconst short int yy_accept[1019] = +#define YY_NUM_RULES 192 +#define YY_END_OF_BUFFER 193 +static yyconst short int yy_accept[1020] = { 0, - 0, 0, 192, 190, 1, 1, 190, 5, 184, 190, - 6, 190, 190, 190, 190, 190, 185, 17, 2, 190, - 12, 190, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 190, 190, 0, 0, 25, 184, 21, 15, 22, - 13, 23, 14, 0, 187, 0, 0, 0, 0, 3, - 4, 16, 19, 186, 185, 0, 27, 24, 28, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 72, 71, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 88, 189, 189, 189, 189, - 189, 189, 189, 189, 124, 127, 118, 121, 189, 189, - 189, 189, 189, 189, 130, 131, 126, 189, 129, 189, - 120, 123, 189, 189, 189, 189, 125, 128, 119, 122, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 20, 26, 0, 0, 18, 0, 137, 138, 139, 140, - - 186, 0, 0, 188, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 44, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 57, 189, 189, 189, 189, - 189, 189, 68, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 78, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 102, - 189, 189, 189, 189, 189, 189, 189, 189, 113, 189, - - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 0, 0, 0, 187, 0, 0, - 186, 189, 189, 189, 189, 29, 189, 189, 189, 31, - 33, 189, 189, 189, 189, 189, 39, 189, 189, 189, - 189, 189, 189, 52, 189, 42, 189, 189, 189, 189, - 189, 43, 154, 189, 189, 189, 56, 189, 189, 189, - 0, 189, 189, 189, 189, 64, 189, 189, 189, 65, - 189, 67, 189, 189, 189, 189, 0, 189, 189, 148, - 189, 189, 76, 189, 77, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - - 189, 189, 99, 189, 189, 189, 189, 189, 103, 189, - 189, 101, 189, 189, 189, 189, 189, 189, 112, 189, - 189, 189, 189, 189, 189, 117, 189, 189, 189, 189, - 179, 9, 8, 189, 10, 11, 189, 189, 189, 189, - 0, 0, 0, 186, 189, 189, 189, 189, 189, 189, - 189, 35, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 49, 189, 189, - 189, 189, 189, 189, 189, 0, 189, 189, 189, 63, - 189, 189, 189, 66, 189, 189, 189, 70, 0, 189, - 74, 189, 189, 79, 189, 189, 189, 189, 189, 85, - - 189, 86, 152, 189, 189, 189, 89, 189, 90, 91, - 189, 189, 189, 189, 189, 98, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 115, 189, 189, - 189, 189, 189, 189, 176, 189, 189, 178, 183, 189, - 0, 0, 189, 189, 189, 189, 30, 32, 34, 189, - 189, 189, 38, 41, 189, 167, 189, 189, 189, 189, - 189, 189, 46, 189, 189, 189, 189, 53, 54, 189, - 189, 189, 189, 0, 160, 189, 189, 62, 189, 189, - 189, 189, 189, 189, 189, 189, 153, 0, 189, 80, - 75, 189, 189, 189, 82, 81, 189, 189, 189, 189, - - 95, 94, 189, 189, 100, 97, 189, 104, 189, 108, - 189, 189, 189, 189, 189, 189, 189, 189, 149, 189, - 116, 189, 189, 189, 7, 177, 175, 0, 0, 189, - 189, 189, 189, 36, 189, 40, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 48, 189, 189, 189, - 189, 61, 0, 189, 189, 59, 189, 189, 189, 189, - 189, 189, 189, 0, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 107, 189, 105, 189, 189, - 189, 189, 189, 114, 189, 189, 180, 189, 0, 0, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - - 189, 189, 189, 189, 189, 189, 189, 189, 189, 0, - 58, 60, 189, 189, 189, 189, 189, 69, 189, 0, - 189, 189, 83, 84, 189, 189, 189, 87, 189, 189, - 189, 189, 106, 189, 189, 189, 189, 189, 181, 182, - 0, 0, 189, 189, 189, 189, 37, 189, 189, 189, - 189, 189, 189, 189, 189, 47, 189, 150, 55, 189, - 143, 0, 189, 189, 189, 156, 189, 189, 0, 73, - 189, 189, 189, 189, 189, 96, 189, 109, 189, 189, - 189, 111, 189, 0, 0, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 51, 189, 50, - - 142, 0, 146, 189, 189, 189, 189, 0, 189, 189, - 189, 93, 189, 189, 189, 189, 189, 189, 0, 0, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 0, 189, 189, 155, 189, 0, 189, - 189, 189, 92, 189, 189, 189, 110, 189, 136, 0, - 136, 189, 189, 189, 189, 189, 189, 189, 161, 189, - 189, 189, 189, 0, 189, 189, 189, 158, 189, 189, - 189, 189, 189, 189, 144, 135, 189, 147, 135, 189, - 189, 189, 189, 189, 189, 189, 189, 0, 189, 189, - 169, 189, 141, 189, 189, 189, 168, 189, 189, 189, - - 189, 189, 189, 189, 189, 45, 0, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 132, 171, 165, - 189, 0, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 159, 145, 157, 189, 189, 189, - 166, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 151, 189, 189, 189, 189, 189, 172, 189, 189, - 189, 189, 189, 164, 163, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, - 189, 189, 189, 189, 189, 189, 189, 189, 170, 189, - 189, 189, 189, 189, 173, 189, 189, 134, 189, 189, - - 189, 189, 189, 189, 133, 189, 189, 189, 189, 189, - 189, 189, 189, 174, 189, 189, 162, 0 + 0, 0, 193, 191, 1, 1, 191, 5, 185, 191, + 6, 191, 191, 191, 191, 191, 186, 17, 2, 191, + 12, 191, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 191, 191, 0, 0, 25, 185, 21, 15, 22, + 13, 23, 14, 0, 188, 0, 0, 0, 0, 3, + 4, 16, 19, 187, 186, 0, 27, 24, 28, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 73, 72, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 89, 190, 190, 190, 190, + 190, 190, 190, 190, 125, 128, 119, 122, 190, 190, + 190, 190, 190, 190, 131, 132, 127, 190, 130, 190, + 121, 124, 190, 190, 190, 190, 126, 129, 120, 123, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 20, 26, 0, 0, 18, 0, 138, 139, 140, 141, + + 187, 0, 0, 189, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 44, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 57, 190, 190, 190, 190, + 190, 190, 69, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 79, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 103, + 190, 190, 190, 190, 190, 190, 190, 190, 114, 190, + + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 0, 0, 0, 188, 0, 0, + 187, 190, 190, 190, 190, 29, 190, 190, 190, 31, + 33, 190, 190, 190, 190, 190, 39, 190, 190, 190, + 190, 190, 190, 52, 190, 42, 190, 190, 190, 190, + 190, 43, 155, 190, 190, 190, 56, 190, 190, 190, + 0, 190, 190, 190, 190, 65, 190, 190, 190, 66, + 190, 68, 190, 190, 190, 190, 0, 190, 190, 149, + 190, 190, 77, 190, 78, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + + 190, 190, 100, 190, 190, 190, 190, 190, 104, 190, + 190, 102, 190, 190, 190, 190, 190, 190, 113, 190, + 190, 190, 190, 190, 190, 118, 190, 190, 190, 190, + 180, 9, 8, 190, 10, 11, 190, 190, 190, 190, + 0, 0, 0, 187, 190, 190, 190, 190, 190, 190, + 190, 35, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 49, 190, 190, + 190, 190, 190, 190, 190, 0, 190, 190, 190, 64, + 190, 190, 190, 67, 190, 190, 190, 71, 0, 190, + 75, 190, 190, 80, 190, 190, 190, 190, 190, 86, + + 190, 87, 153, 190, 190, 190, 90, 190, 91, 92, + 190, 190, 190, 190, 190, 99, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 116, 190, 190, + 190, 190, 190, 190, 177, 190, 190, 179, 184, 190, + 0, 0, 190, 190, 190, 190, 30, 32, 34, 190, + 190, 190, 38, 41, 190, 168, 190, 190, 190, 190, + 190, 190, 46, 190, 190, 190, 190, 53, 54, 190, + 190, 190, 190, 0, 161, 190, 190, 63, 190, 190, + 190, 190, 190, 190, 190, 190, 154, 0, 190, 81, + 76, 190, 190, 190, 83, 82, 190, 190, 190, 190, + + 96, 95, 190, 190, 101, 98, 190, 105, 190, 109, + 190, 190, 190, 190, 190, 190, 190, 190, 150, 190, + 117, 190, 190, 190, 7, 178, 176, 0, 0, 190, + 190, 190, 190, 36, 190, 40, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 48, 190, 190, 190, + 190, 62, 0, 59, 190, 190, 60, 190, 190, 190, + 190, 190, 190, 190, 0, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 108, 190, 106, 190, + 190, 190, 190, 190, 115, 190, 190, 181, 190, 0, + 0, 190, 190, 190, 190, 190, 190, 190, 190, 190, + + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 0, 58, 61, 190, 190, 190, 190, 190, 70, 190, + 0, 190, 190, 84, 85, 190, 190, 190, 88, 190, + 190, 190, 190, 107, 190, 190, 190, 190, 190, 182, + 183, 0, 0, 190, 190, 190, 190, 37, 190, 190, + 190, 190, 190, 190, 190, 190, 47, 190, 151, 55, + 190, 144, 0, 190, 190, 190, 157, 190, 190, 0, + 74, 190, 190, 190, 190, 190, 97, 190, 110, 190, + 190, 190, 112, 190, 0, 0, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 51, 190, + + 50, 143, 0, 147, 190, 190, 190, 190, 0, 190, + 190, 190, 94, 190, 190, 190, 190, 190, 190, 0, + 0, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 0, 190, 190, 156, 190, 0, + 190, 190, 190, 93, 190, 190, 190, 111, 190, 137, + 0, 137, 190, 190, 190, 190, 190, 190, 190, 162, + 190, 190, 190, 190, 0, 190, 190, 190, 159, 190, + 190, 190, 190, 190, 190, 145, 136, 190, 148, 136, + 190, 190, 190, 190, 190, 190, 190, 190, 0, 190, + 190, 170, 190, 142, 190, 190, 190, 169, 190, 190, + + 190, 190, 190, 190, 190, 190, 45, 0, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 133, 172, + 166, 190, 0, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 160, 146, 158, 190, 190, + 190, 167, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 152, 190, 190, 190, 190, 190, 173, 190, + 190, 190, 190, 190, 165, 164, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 171, + 190, 190, 190, 190, 190, 174, 190, 190, 135, 190, + + 190, 190, 190, 190, 190, 134, 190, 190, 190, 190, + 190, 190, 190, 190, 175, 190, 190, 163, 0 } ; static yyconst int yy_ec[256] = @@ -445,241 +445,241 @@ static yyconst int yy_meta[77] = 3, 3, 3, 3, 1, 1 } ; -static yyconst short int yy_base[1024] = +static yyconst short int yy_base[1025] = { 0, - 0, 0, 1282, 51, 52, 1283, 57, 54, 70, 75, + 0, 0, 1283, 51, 52, 1284, 57, 54, 70, 75, 55, 67, 80, 81, 113, 95, 132, 73, 79, 89, 111, 119, 125, 133, 179, 140, 181, 189, 135, 184, 204, 83, 127, 222, 141, 208, 220, 238, 249, 293, 351, 212, 274, 248, 264, 147, 267, 268, 218, 282, - 295, 271, 197, 1243, 1243, 1283, 253, 1283, 1283, 1283, - 1283, 1283, 1283, 1267, 325, 1266, 1265, 188, 1264, 1283, - 1283, 1283, 1283, 355, 388, 397, 1283, 1283, 1283, 0, - 1237, 1230, 1236, 1240, 1208, 1218, 1211, 131, 1204, 1226, - 1192, 1196, 1203, 1223, 1222, 1223, 83, 1225, 160, 1201, - - 1208, 1191, 287, 1214, 1215, 1194, 1193, 1202, 1187, 1220, - 1214, 1221, 1187, 1193, 265, 1219, 1209, 1192, 1179, 1178, - 1174, 1177, 1200, 1213, 1172, 1197, 0, 1166, 1170, 1195, - 1158, 1168, 1167, 226, 1191, 1195, 1159, 1172, 1158, 1191, - 1169, 1197, 1182, 1153, 1145, 0, 119, 292, 77, 1155, - 133, 1148, 1155, 1190, 0, 0, 0, 0, 1151, 196, - 1146, 1145, 1144, 1148, 0, 0, 0, 1168, 0, 1175, - 0, 0, 1144, 302, 1147, 338, 0, 0, 0, 0, - 1144, 1135, 1149, 1149, 1137, 1128, 1132, 1129, 1136, 1129, - 1283, 1283, 1157, 1152, 1283, 408, 1283, 1283, 1283, 1283, - - 413, 422, 381, 429, 1155, 1167, 1149, 1148, 1121, 333, - 1125, 1124, 1119, 1124, 1144, 1124, 1119, 1116, 1137, 1152, - 1136, 1137, 1143, 1142, 1113, 1111, 1111, 1104, 1117, 1114, - 1104, 1102, 1108, 1140, 1135, 1108, 1111, 1089, 1099, 1130, - 1125, 344, 1098, 352, 1087, 0, 1088, 1125, 1124, 1084, - 1087, 1096, 0, 1096, 1111, 1119, 1082, 1133, 1089, 1074, - 1113, 1086, 1083, 1084, 1122, 1072, 1103, 1085, 1076, 1063, - 1080, 1102, 1075, 1091, 1100, 1076, 1058, 1062, 1067, 1060, - 1067, 1058, 1063, 1065, 1054, 1047, 1065, 1060, 1074, 1055, - 1053, 1052, 1041, 395, 1053, 1046, 1068, 1069, 1047, 1041, - - 1041, 1039, 1058, 1057, 1029, 1040, 393, 1042, 1031, 398, - 1033, 1039, 1034, 1023, 1048, 1050, 440, 455, 464, 469, - 474, 1046, 1050, 1047, 1069, 0, 1021, 1025, 1032, 0, - 1065, 1030, 1021, 1043, 1023, 1023, 0, 1047, 1039, 1045, - 1034, 1045, 1033, 0, 1000, 0, 1018, 1007, 1000, 999, - 1004, 0, 0, 1037, 994, 993, 0, 1002, 1010, 1019, - 1025, 1028, 991, 991, 998, 0, 983, 1002, 1001, 0, - 983, 0, 980, 1019, 1018, 977, 1029, 977, 975, 0, - 975, 972, 0, 1025, 0, 1009, 243, 983, 976, 968, - 997, 967, 1004, 988, 969, 971, 974, 969, 958, 959, - - 956, 957, 0, 961, 955, 952, 966, 990, 0, 955, - 954, 0, 965, 948, 963, 958, 979, 974, 0, 942, - 947, 951, 968, 977, 943, 0, 953, 939, 938, 932, - 0, 0, 0, 945, 0, 0, 948, 931, 943, 941, - 962, 965, 479, 484, 960, 965, 962, 940, 921, 925, - 924, 0, 933, 922, 951, 916, 914, 939, 951, 951, - 936, 952, 948, 914, 921, 918, 917, 928, 915, 926, - 913, 912, 913, 330, 923, 922, 936, 320, 895, 0, - 907, 438, 476, 0, 901, 916, 917, 0, 942, 888, - 0, 887, 896, 0, 914, 901, 892, 882, 885, 0, - - 905, 0, 0, 920, 891, 892, 0, 881, 0, 0, - 887, 887, 889, 877, 884, 0, 888, 882, 867, 866, - 879, 880, 863, 903, 901, 406, 874, 0, 887, 880, - 871, 872, 860, 862, 0, 865, 860, 0, 0, 847, - 881, 891, 879, 887, 888, 874, 0, 0, 896, 843, - 856, 872, 0, 0, 876, 0, 858, 874, 870, 864, - 843, 834, 0, 839, 850, 827, 866, 0, 0, 847, - 853, 857, 866, 855, 0, 834, 833, 0, 836, 851, - 845, 859, 862, 859, 821, 843, 0, 865, 827, 0, - 0, 845, 817, 804, 0, 0, 849, 834, 807, 824, - - 0, 0, 806, 814, 0, 0, 844, 0, 815, 0, - 814, 814, 801, 842, 838, 806, 813, 809, 0, 812, - 0, 806, 795, 800, 0, 0, 0, 814, 824, 812, - 827, 821, 817, 0, 788, 0, 822, 825, 807, 805, - 797, 813, 804, 789, 790, 790, 0, 802, 771, 798, - 799, 0, 825, 768, 782, 0, 790, 790, 790, 794, - 798, 766, 795, 812, 773, 797, 764, 768, 794, 771, - 753, 758, 750, 754, 787, 0, 756, 0, 740, 777, - 762, 748, 741, 0, 769, 739, 0, 753, 767, 775, - 765, 753, 772, 776, 733, 749, 760, 765, 767, 753, - - 767, 729, 725, 736, 729, 751, 736, 739, 741, 762, - 0, 0, 54, 84, 88, 106, 108, 0, 153, 214, - 167, 256, 0, 0, 271, 300, 318, 0, 322, 328, - 381, 348, 0, 386, 423, 393, 398, 421, 0, 0, - 434, 472, 462, 481, 475, 482, 0, 483, 462, 484, - 465, 472, 492, 457, 461, 0, 466, 0, 0, 493, - 0, 508, 496, 485, 486, 0, 491, 479, 518, 0, - 489, 503, 504, 481, 471, 0, 503, 0, 495, 494, - 470, 0, 507, 499, 513, 501, 503, 520, 517, 518, - 504, 505, 510, 515, 525, 512, 518, 0, 487, 0, - - 0, 538, 0, 507, 525, 534, 518, 544, 523, 535, - 534, 0, 502, 528, 523, 527, 514, 532, 0, 543, - 570, 545, 558, 558, 550, 547, 548, 556, 560, 553, - 568, 549, 531, 586, 576, 563, 0, 575, 589, 570, - 576, 575, 0, 576, 569, 566, 0, 569, 1283, 0, - 0, 573, 585, 646, 586, 571, 587, 585, 0, 579, - 596, 580, 564, 606, 586, 583, 584, 1283, 595, 600, - 592, 588, 602, 604, 0, 1283, 584, 0, 0, 597, - 607, 612, 600, 594, 613, 597, 589, 631, 600, 612, - 0, 622, 0, 628, 629, 638, 0, 622, 622, 621, - - 645, 630, 645, 646, 635, 0, 660, 640, 640, 630, - 638, 643, 656, 652, 635, 640, 658, 0, 638, 0, - 659, 674, 663, 654, 667, 661, 658, 668, 673, 681, - 667, 651, 660, 678, 1283, 0, 0, 663, 666, 656, - 0, 667, 680, 666, 664, 682, 685, 684, 676, 674, - 687, 0, 685, 685, 688, 691, 681, 674, 696, 676, - 677, 685, 692, 0, 0, 688, 691, 691, 698, 702, - 706, 704, 696, 709, 701, 690, 703, 717, 714, 704, - 706, 711, 704, 708, 707, 709, 708, 714, 0, 724, - 725, 726, 714, 718, 0, 720, 717, 0, 717, 718, - - 733, 721, 739, 727, 0, 723, 724, 735, 744, 731, - 728, 734, 740, 0, 735, 737, 0, 1283, 772, 775, - 778, 781, 784 + 295, 271, 197, 1244, 1244, 1284, 253, 1284, 1284, 1284, + 1284, 1284, 1284, 1268, 325, 1267, 1266, 188, 1265, 1284, + 1284, 1284, 1284, 355, 388, 397, 1284, 1284, 1284, 0, + 1238, 1231, 1237, 1241, 1209, 1219, 1212, 131, 1205, 1227, + 1193, 1197, 1204, 1224, 1223, 1224, 83, 1226, 160, 1202, + + 1209, 1192, 287, 1215, 1216, 1195, 1194, 1203, 1188, 1221, + 1215, 1222, 1188, 1194, 265, 1220, 1210, 1193, 1180, 1179, + 1175, 1178, 1201, 1214, 1173, 1198, 0, 1167, 1171, 1196, + 1159, 1169, 1168, 226, 1192, 1196, 1160, 1173, 1159, 1192, + 1170, 1198, 1183, 1154, 1146, 0, 119, 292, 77, 1156, + 133, 1149, 1156, 1191, 0, 0, 0, 0, 1152, 196, + 1147, 1146, 1145, 1149, 0, 0, 0, 1169, 0, 1176, + 0, 0, 1145, 302, 1148, 338, 0, 0, 0, 0, + 1145, 1136, 1150, 1150, 1138, 1129, 1133, 1130, 1137, 1130, + 1284, 1284, 1158, 1153, 1284, 408, 1284, 1284, 1284, 1284, + + 413, 422, 381, 429, 1156, 1168, 1150, 1149, 1122, 333, + 1126, 1125, 1120, 1125, 1145, 1125, 1120, 1117, 1138, 1153, + 1137, 1138, 1144, 1143, 1114, 1112, 1112, 1105, 1118, 1115, + 1105, 1103, 1109, 1141, 1136, 1109, 1112, 1090, 1100, 1131, + 1126, 344, 1099, 352, 1088, 0, 1089, 1126, 1125, 1085, + 1088, 1097, 0, 1097, 1112, 1120, 1083, 1134, 1090, 1075, + 1114, 1087, 1084, 1085, 1123, 1073, 1104, 1086, 1077, 1064, + 1081, 1103, 1076, 1092, 1101, 1077, 1059, 1063, 1068, 1061, + 1068, 1059, 1064, 1066, 1055, 1048, 1066, 1061, 1075, 1056, + 1054, 1053, 1042, 395, 1054, 1047, 1069, 1070, 1048, 1042, + + 1042, 1040, 1059, 1058, 1030, 1041, 393, 1043, 1032, 398, + 1034, 1040, 1035, 1024, 1049, 1051, 440, 455, 464, 469, + 474, 1047, 1051, 1048, 1070, 0, 1022, 1026, 1033, 0, + 1066, 1031, 1022, 1044, 1024, 1024, 0, 1048, 1040, 1046, + 1035, 1046, 1034, 0, 1001, 0, 1019, 1008, 1001, 1000, + 1005, 0, 0, 1038, 995, 994, 0, 1003, 1011, 1020, + 1026, 1029, 992, 992, 999, 0, 984, 1003, 1002, 0, + 984, 0, 981, 1020, 1019, 978, 1030, 978, 976, 0, + 976, 973, 0, 1026, 0, 1010, 243, 984, 977, 969, + 998, 968, 1005, 989, 970, 972, 975, 970, 959, 960, + + 957, 958, 0, 962, 956, 953, 967, 991, 0, 956, + 955, 0, 966, 949, 964, 959, 980, 975, 0, 943, + 948, 952, 969, 978, 944, 0, 954, 940, 939, 933, + 0, 0, 0, 946, 0, 0, 949, 932, 944, 942, + 963, 966, 479, 484, 961, 966, 963, 941, 922, 926, + 925, 0, 934, 923, 952, 917, 915, 940, 952, 952, + 937, 953, 949, 915, 922, 919, 918, 929, 916, 927, + 914, 913, 914, 330, 924, 923, 937, 320, 896, 0, + 908, 438, 476, 0, 902, 917, 918, 0, 943, 889, + 0, 888, 897, 0, 915, 902, 893, 883, 886, 0, + + 906, 0, 0, 921, 892, 893, 0, 882, 0, 0, + 888, 888, 890, 878, 885, 0, 889, 883, 868, 867, + 880, 881, 864, 904, 902, 406, 875, 0, 888, 881, + 872, 873, 861, 863, 0, 866, 861, 0, 0, 848, + 882, 892, 880, 888, 889, 875, 0, 0, 897, 844, + 857, 873, 0, 0, 877, 0, 859, 875, 871, 865, + 844, 835, 0, 840, 851, 828, 867, 0, 0, 848, + 854, 858, 867, 856, 0, 177, 835, 0, 838, 853, + 847, 861, 864, 861, 823, 845, 0, 867, 829, 0, + 0, 847, 819, 806, 0, 0, 851, 836, 809, 826, + + 0, 0, 808, 816, 0, 0, 846, 0, 817, 0, + 816, 816, 803, 844, 840, 808, 815, 811, 0, 814, + 0, 808, 797, 802, 0, 0, 0, 816, 826, 814, + 829, 823, 819, 0, 790, 0, 824, 827, 809, 807, + 799, 815, 806, 791, 792, 792, 0, 804, 773, 800, + 801, 0, 827, 0, 770, 784, 0, 792, 792, 792, + 796, 800, 768, 797, 814, 775, 799, 766, 770, 796, + 773, 755, 760, 752, 756, 789, 0, 758, 0, 742, + 779, 764, 750, 743, 0, 771, 741, 0, 755, 769, + 777, 767, 755, 774, 778, 735, 751, 762, 767, 769, + + 755, 769, 731, 727, 738, 731, 753, 739, 743, 745, + 766, 0, 0, 741, 63, 86, 86, 106, 0, 110, + 162, 237, 271, 0, 0, 278, 349, 322, 0, 324, + 356, 391, 363, 0, 400, 425, 394, 405, 439, 0, + 0, 461, 473, 463, 482, 476, 483, 0, 484, 463, + 486, 466, 473, 494, 458, 462, 0, 467, 0, 0, + 494, 0, 509, 497, 486, 487, 0, 492, 480, 519, + 0, 490, 504, 505, 482, 472, 0, 504, 0, 496, + 495, 471, 0, 508, 500, 514, 502, 504, 521, 518, + 519, 505, 506, 511, 516, 526, 513, 519, 0, 488, + + 0, 0, 539, 0, 508, 526, 535, 519, 545, 524, + 536, 535, 0, 503, 529, 524, 528, 515, 533, 0, + 544, 571, 546, 559, 559, 551, 548, 549, 557, 561, + 554, 569, 550, 532, 587, 577, 564, 0, 576, 590, + 571, 577, 576, 0, 577, 570, 567, 0, 570, 1284, + 0, 0, 574, 586, 647, 587, 572, 588, 586, 0, + 580, 597, 581, 565, 607, 587, 584, 585, 1284, 596, + 601, 593, 589, 603, 605, 0, 1284, 585, 0, 0, + 598, 608, 613, 601, 595, 614, 598, 590, 632, 601, + 613, 0, 623, 0, 629, 630, 639, 0, 623, 623, + + 622, 646, 631, 646, 647, 636, 0, 661, 641, 641, + 631, 639, 644, 657, 653, 636, 641, 659, 0, 639, + 0, 660, 675, 664, 655, 668, 662, 659, 669, 674, + 682, 668, 652, 661, 679, 1284, 0, 0, 664, 667, + 657, 0, 668, 681, 667, 665, 683, 686, 685, 677, + 675, 688, 0, 686, 686, 689, 692, 682, 675, 697, + 677, 678, 686, 693, 0, 0, 689, 692, 692, 699, + 703, 707, 705, 697, 710, 702, 691, 704, 718, 715, + 705, 707, 712, 705, 709, 708, 710, 709, 715, 0, + 725, 726, 727, 715, 719, 0, 721, 718, 0, 718, + + 719, 734, 722, 740, 728, 0, 724, 725, 736, 745, + 732, 729, 735, 741, 0, 736, 738, 0, 1284, 773, + 776, 779, 782, 785 } ; -static yyconst short int yy_def[1024] = +static yyconst short int yy_def[1025] = { 0, - 1018, 1, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - - 1018, 1018, 1018, 1018, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1018, 1018, 1018, 1018, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1018, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1018, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1018, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1018, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1018, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1018, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1018, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1018, 1018, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1018, 1019, 1019, 1019, 1019, 1019, 1018, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1020, 1018, - 1021, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1018, 1019, 1019, 1019, 1019, 1018, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1022, - 1019, 1019, 1019, 1023, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1018, 1019, 1019, 1019, 1018, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1018, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1018, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1018, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 0, 1018, 1018, - 1018, 1018, 1018 + 1019, 1019, 1019, 1019, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1019, 1019, 1019, 1019, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1019, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1019, 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1019, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1019, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1019, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, + 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1019, 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1019, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1019, 1019, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1019, 1020, 1020, 1020, 1020, 1020, 1019, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1021, + 1019, 1022, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1019, 1020, 1020, 1020, 1020, 1019, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, + 1023, 1020, 1020, 1020, 1024, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1019, 1020, 1020, 1020, 1019, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1019, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1019, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1019, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 0, 1019, + 1019, 1019, 1019, 1019 } ; -static yyconst short int yy_nxt[1360] = +static yyconst short int yy_nxt[1361] = { 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 18, 19, @@ -690,23 +690,23 @@ static yyconst short int yy_nxt[1360] = 32, 48, 49, 32, 32, 32, 50, 32, 32, 51, 32, 32, 32, 32, 52, 53, 54, 54, 56, 54, 54, 58, 54, 57, 57, 57, 57, 57, 59, 60, - 763, 62, 54, 55, 55, 54, 55, 55, 54, 55, + 765, 62, 54, 55, 55, 54, 55, 55, 54, 55, 54, 61, 63, 70, 54, 54, 54, 71, 81, 55, - 77, 764, 55, 765, 54, 55, 72, 55, 222, 223, + 77, 766, 55, 767, 54, 55, 72, 55, 222, 223, 54, 55, 55, 55, 64, 83, 65, 65, 65, 65, - 65, 55, 78, 766, 282, 767, 54, 55, 54, 283, + 65, 55, 78, 768, 282, 769, 54, 55, 54, 283, 79, 66, 73, 74, 54, 75, 75, 75, 75, 75, 81, 82, 81, 55, 67, 68, 69, 54, 81, 76, 81, 55, 123, 104, 135, 81, 81, 83, 278, 83, - 84, 105, 81, 89, 55, 83, 85, 83, 768, 136, + 84, 105, 81, 89, 55, 83, 85, 83, 770, 136, 212, 90, 83, 83, 285, 76, 91, 279, 129, 83, 86, 87, 88, 106, 137, 92, 184, 107, 213, 199, 286, 93, 94, 138, 81, 108, 81, 110, 109, 81, 95, 124, 116, 96, 81, 111, 97, 112, 192, 225, 117, 83, 54, 83, 194, 98, 83, 226, 99, 81, - 769, 83, 100, 81, 770, 101, 102, 81, 118, 55, + 654, 83, 100, 81, 655, 101, 102, 81, 118, 55, 113, 103, 114, 81, 126, 81, 83, 81, 119, 120, 83, 121, 115, 130, 83, 291, 125, 122, 127, 140, 83, 292, 83, 81, 83, 128, 57, 57, 57, 57, @@ -736,103 +736,103 @@ static yyconst short int yy_nxt[1360] = 444, 444, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 444, 444, 444, 444, 444, 444, 444, 444, - 444, 444, 582, 785, 786, 787, 789, 790, 791, 788, - 793, 794, 583, 795, 796, 797, 584, 798, 799, 800, - 801, 802, 803, 792, 804, 805, 806, 807, 808, 809, + 444, 444, 582, 785, 786, 787, 788, 790, 791, 792, + 789, 794, 583, 795, 796, 797, 584, 798, 799, 800, + 801, 802, 803, 804, 793, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, - 840, 841, 842, 843, 844, 845, 846, 847, 848, 850, - 849, 849, 852, 849, 849, 849, 849, 849, 849, 849, - 849, 849, 849, 853, 854, 855, 856, 857, 849, 849, - 849, 849, 849, 858, 859, 860, 861, 862, 863, 864, + 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, + 851, 850, 850, 853, 850, 850, 850, 850, 850, 850, + 850, 850, 850, 850, 854, 855, 856, 857, 858, 850, + 850, 850, 850, 850, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, - 875, 877, 878, 880, 881, 882, 883, 849, 884, 885, + 875, 876, 878, 879, 881, 882, 883, 884, 850, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, - 906, 907, 908, 909, 849, 849, 876, 876, 910, 876, - 876, 876, 876, 876, 876, 876, 876, 876, 876, 911, - 912, 913, 914, 915, 876, 876, 876, 876, 876, 916, + 906, 907, 908, 909, 910, 850, 850, 877, 877, 911, + 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, + 912, 913, 914, 915, 916, 877, 877, 877, 877, 877, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, - 937, 938, 939, 876, 940, 941, 942, 943, 944, 945, + 937, 938, 939, 940, 877, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, - 876, 876, 966, 967, 968, 969, 970, 971, 972, 973, + 966, 877, 877, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, - 1014, 1015, 1016, 1017, 80, 849, 762, 849, 851, 761, - 851, 876, 760, 876, 879, 759, 879, 758, 757, 756, - 755, 754, 753, 752, 751, 750, 749, 748, 747, 746, - - 745, 744, 743, 742, 741, 740, 739, 738, 737, 736, - 735, 734, 733, 732, 731, 730, 729, 728, 727, 726, - 725, 724, 723, 722, 721, 720, 719, 718, 717, 716, - 715, 714, 713, 712, 711, 710, 709, 708, 707, 706, - 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, - 695, 694, 693, 692, 691, 690, 689, 688, 687, 686, - 685, 684, 683, 682, 681, 680, 679, 678, 677, 676, - 675, 674, 673, 672, 671, 670, 669, 668, 667, 666, - 665, 664, 663, 662, 661, 660, 659, 658, 657, 656, - 655, 654, 653, 652, 651, 650, 649, 648, 647, 646, - - 645, 644, 643, 642, 641, 640, 639, 638, 637, 636, - 635, 634, 633, 632, 631, 630, 629, 628, 627, 626, - 625, 624, 623, 622, 621, 620, 619, 618, 615, 614, - 613, 612, 611, 610, 609, 608, 607, 606, 605, 604, - 603, 602, 601, 600, 599, 598, 597, 596, 595, 594, - 593, 592, 591, 590, 589, 588, 587, 586, 585, 579, - 578, 575, 574, 573, 570, 569, 568, 567, 566, 565, - 564, 563, 562, 561, 560, 559, 558, 557, 556, 555, - 554, 553, 552, 551, 550, 549, 548, 547, 546, 545, - 544, 543, 542, 541, 540, 539, 538, 537, 536, 535, - - 534, 533, 532, 531, 530, 529, 528, 527, 526, 525, - 524, 523, 522, 521, 520, 519, 518, 517, 516, 515, - 514, 513, 512, 511, 510, 509, 508, 507, 506, 505, - 504, 503, 502, 501, 500, 499, 498, 495, 494, 493, - 492, 491, 490, 489, 488, 487, 486, 485, 484, 483, - 482, 481, 480, 479, 478, 477, 476, 475, 474, 473, - 472, 471, 470, 469, 468, 467, 466, 465, 464, 463, - 462, 461, 460, 459, 458, 457, 456, 455, 454, 453, - 452, 451, 450, 449, 448, 447, 446, 445, 442, 441, - 440, 439, 438, 437, 431, 430, 426, 425, 424, 423, - - 422, 421, 420, 419, 418, 417, 416, 415, 412, 411, - 410, 409, 408, 407, 406, 405, 404, 403, 402, 401, - 400, 399, 398, 397, 396, 395, 394, 393, 392, 391, - 390, 389, 388, 387, 386, 385, 384, 383, 382, 381, - 380, 379, 378, 377, 376, 375, 374, 373, 372, 371, - 370, 369, 368, 367, 366, 363, 360, 359, 358, 357, - 356, 355, 354, 353, 352, 351, 350, 349, 348, 347, - 346, 345, 344, 343, 342, 341, 340, 339, 338, 337, - 336, 335, 334, 333, 332, 331, 330, 326, 325, 324, - 323, 322, 316, 315, 314, 313, 312, 311, 310, 309, - - 308, 307, 306, 305, 302, 299, 298, 297, 296, 295, - 294, 293, 290, 289, 288, 287, 284, 277, 276, 275, - 274, 273, 272, 271, 270, 269, 268, 267, 264, 263, - 262, 261, 260, 259, 258, 257, 256, 255, 254, 253, - 252, 251, 250, 249, 248, 244, 243, 242, 241, 240, - 239, 238, 237, 236, 235, 234, 229, 228, 227, 224, - 221, 220, 219, 218, 217, 216, 215, 214, 211, 210, - 209, 208, 207, 206, 205, 200, 198, 197, 195, 194, - 193, 1018, 3, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018 + 1014, 1015, 1016, 1017, 1018, 80, 850, 764, 850, 852, + 763, 852, 877, 762, 877, 880, 761, 880, 760, 759, + 758, 757, 756, 755, 754, 753, 752, 751, 750, 749, + + 748, 747, 746, 745, 744, 743, 742, 741, 740, 739, + 738, 737, 736, 735, 734, 733, 732, 731, 730, 729, + 728, 727, 726, 725, 724, 723, 722, 721, 720, 719, + 718, 717, 716, 715, 714, 713, 712, 711, 710, 709, + 708, 707, 706, 705, 704, 703, 702, 701, 700, 699, + 698, 697, 696, 695, 694, 693, 692, 691, 690, 689, + 688, 687, 686, 685, 684, 683, 682, 681, 680, 679, + 678, 677, 676, 675, 674, 673, 672, 671, 670, 669, + 668, 667, 666, 665, 664, 663, 662, 661, 660, 659, + 658, 657, 656, 653, 652, 651, 650, 649, 648, 647, + + 646, 645, 644, 643, 642, 641, 640, 639, 638, 637, + 636, 635, 634, 633, 632, 631, 630, 629, 628, 627, + 626, 625, 624, 623, 622, 621, 620, 619, 618, 615, + 614, 613, 612, 611, 610, 609, 608, 607, 606, 605, + 604, 603, 602, 601, 600, 599, 598, 597, 596, 595, + 594, 593, 592, 591, 590, 589, 588, 587, 586, 585, + 579, 578, 575, 574, 573, 570, 569, 568, 567, 566, + 565, 564, 563, 562, 561, 560, 559, 558, 557, 556, + 555, 554, 553, 552, 551, 550, 549, 548, 547, 546, + 545, 544, 543, 542, 541, 540, 539, 538, 537, 536, + + 535, 534, 533, 532, 531, 530, 529, 528, 527, 526, + 525, 524, 523, 522, 521, 520, 519, 518, 517, 516, + 515, 514, 513, 512, 511, 510, 509, 508, 507, 506, + 505, 504, 503, 502, 501, 500, 499, 498, 495, 494, + 493, 492, 491, 490, 489, 488, 487, 486, 485, 484, + 483, 482, 481, 480, 479, 478, 477, 476, 475, 474, + 473, 472, 471, 470, 469, 468, 467, 466, 465, 464, + 463, 462, 461, 460, 459, 458, 457, 456, 455, 454, + 453, 452, 451, 450, 449, 448, 447, 446, 445, 442, + 441, 440, 439, 438, 437, 431, 430, 426, 425, 424, + + 423, 422, 421, 420, 419, 418, 417, 416, 415, 412, + 411, 410, 409, 408, 407, 406, 405, 404, 403, 402, + 401, 400, 399, 398, 397, 396, 395, 394, 393, 392, + 391, 390, 389, 388, 387, 386, 385, 384, 383, 382, + 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, + 371, 370, 369, 368, 367, 366, 363, 360, 359, 358, + 357, 356, 355, 354, 353, 352, 351, 350, 349, 348, + 347, 346, 345, 344, 343, 342, 341, 340, 339, 338, + 337, 336, 335, 334, 333, 332, 331, 330, 326, 325, + 324, 323, 322, 316, 315, 314, 313, 312, 311, 310, + + 309, 308, 307, 306, 305, 302, 299, 298, 297, 296, + 295, 294, 293, 290, 289, 288, 287, 284, 277, 276, + 275, 274, 273, 272, 271, 270, 269, 268, 267, 264, + 263, 262, 261, 260, 259, 258, 257, 256, 255, 254, + 253, 252, 251, 250, 249, 248, 244, 243, 242, 241, + 240, 239, 238, 237, 236, 235, 234, 229, 228, 227, + 224, 221, 220, 219, 218, 217, 216, 215, 214, 211, + 210, 209, 208, 207, 206, 205, 200, 198, 197, 195, + 194, 193, 1019, 3, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019 } ; -static yyconst short int yy_chk[1360] = +static yyconst short int yy_chk[1361] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -843,23 +843,23 @@ static yyconst short int yy_chk[1360] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 5, 7, 8, 11, 10, 7, 9, 9, 9, 9, 9, 12, 13, - 713, 14, 12, 4, 5, 9, 8, 11, 18, 7, + 715, 14, 12, 4, 5, 9, 8, 11, 18, 7, 10, 13, 14, 16, 19, 13, 14, 16, 32, 12, - 20, 714, 9, 715, 20, 18, 16, 10, 97, 97, + 20, 716, 9, 717, 20, 18, 16, 10, 97, 97, 16, 19, 13, 14, 15, 32, 15, 15, 15, 15, - 15, 20, 21, 716, 149, 717, 21, 16, 15, 149, + 15, 20, 21, 718, 149, 720, 21, 16, 15, 149, 22, 15, 16, 17, 22, 17, 17, 17, 17, 17, 23, 23, 33, 21, 15, 15, 15, 17, 24, 17, 29, 22, 29, 26, 35, 26, 35, 23, 147, 33, - 23, 26, 46, 24, 17, 24, 23, 29, 719, 35, + 23, 26, 46, 24, 17, 24, 23, 29, 721, 35, 88, 24, 26, 35, 151, 17, 24, 147, 33, 46, 23, 23, 23, 26, 35, 24, 46, 26, 88, 68, 151, 24, 25, 35, 25, 26, 27, 27, 26, 30, 25, 30, 28, 25, 28, 27, 25, 27, 53, 99, 28, 25, 53, 27, 68, 25, 30, 99, 25, 31, - 720, 28, 25, 36, 721, 25, 25, 42, 28, 53, + 576, 28, 25, 36, 576, 25, 25, 42, 28, 53, 27, 25, 27, 49, 31, 37, 31, 34, 28, 28, 36, 28, 27, 34, 42, 160, 30, 28, 31, 37, 49, 160, 37, 38, 34, 31, 57, 57, 57, 57, @@ -868,121 +868,121 @@ static yyconst short int yy_chk[1360] = 44, 39, 47, 48, 38, 38, 52, 38, 39, 43, 38, 43, 39, 38, 722, 44, 45, 50, 43, 47, - 48, 39, 43, 52, 43, 43, 43, 39, 40, 725, + 48, 39, 43, 52, 43, 43, 43, 39, 40, 723, 51, 48, 115, 40, 50, 45, 726, 40, 115, 47, 48, 40, 115, 40, 40, 40, 43, 51, 65, 65, 65, 65, 65, 103, 50, 52, 103, 103, 51, 148, 40, 174, 65, 103, 242, 474, 40, 40, 210, 174, 40, 40, 148, 176, 474, 40, 41, 41, 74, 74, - 74, 74, 74, 210, 210, 727, 41, 176, 65, 729, + 74, 74, 74, 210, 210, 727, 41, 176, 65, 728, 244, 730, 74, 244, 242, 41, 478, 478, 41, 41, 41, 41, 41, 41, 203, 203, 203, 203, 203, 75, 41, 75, 75, 75, 75, 75, 76, 76, 74, 731, 76, 76, 76, 76, 76, 75, 41, 196, 196, 732, 294, 196, 196, 196, 196, 196, 201, 201, 201, 201, - 201, 202, 202, 294, 734, 202, 202, 202, 202, 202, + 201, 202, 202, 294, 733, 202, 202, 202, 202, 202, 201, 75, 204, 204, 204, 204, 204, 307, 735, 310, 736, 737, 307, 317, 317, 317, 317, 317, 738, 307, 526, 310, 482, 310, 310, 526, 201, 310, 318, 318, - 318, 318, 318, 319, 319, 482, 741, 319, 319, 319, + 318, 318, 318, 319, 319, 482, 739, 319, 319, 319, 319, 319, 320, 320, 320, 320, 320, 321, 321, 321, 321, 321, 443, 443, 443, 443, 443, 444, 444, 444, - 444, 444, 483, 742, 743, 744, 745, 746, 748, 744, - 749, 750, 483, 751, 752, 753, 483, 754, 755, 757, - 760, 762, 763, 748, 764, 765, 767, 768, 769, 771, - 772, 773, 774, 775, 777, 779, 780, 781, 783, 784, + 444, 444, 483, 742, 743, 744, 745, 746, 747, 749, + 745, 750, 483, 751, 752, 753, 483, 754, 755, 756, + 758, 761, 763, 764, 749, 765, 766, 768, 769, 770, + 772, 773, 774, 775, 776, 778, 780, 781, 782, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, - 795, 796, 797, 799, 802, 804, 805, 806, 807, 808, - 809, 810, 811, 813, 814, 815, 816, 817, 818, 820, - 821, 821, 822, 821, 821, 821, 821, 821, 821, 821, - 821, 821, 821, 823, 824, 825, 826, 827, 821, 821, - 821, 821, 821, 828, 829, 830, 831, 832, 833, 834, - - 835, 836, 838, 839, 840, 841, 842, 844, 845, 846, - 848, 852, 853, 855, 856, 857, 858, 821, 860, 861, - 862, 863, 864, 865, 866, 867, 869, 870, 871, 872, - 873, 874, 877, 880, 881, 882, 883, 884, 885, 886, - 887, 888, 889, 890, 821, 821, 854, 854, 892, 854, - 854, 854, 854, 854, 854, 854, 854, 854, 854, 894, - 895, 896, 898, 899, 854, 854, 854, 854, 854, 900, - 901, 902, 903, 904, 905, 907, 908, 909, 910, 911, - 912, 913, 914, 915, 916, 917, 919, 921, 922, 923, - 924, 925, 926, 854, 927, 928, 929, 930, 931, 932, - - 933, 934, 938, 939, 940, 942, 943, 944, 945, 946, - 947, 948, 949, 950, 951, 953, 954, 955, 956, 957, - 854, 854, 958, 959, 960, 961, 962, 963, 966, 967, + 795, 796, 797, 798, 800, 803, 805, 806, 807, 808, + 809, 810, 811, 812, 814, 815, 816, 817, 818, 819, + 821, 822, 822, 823, 822, 822, 822, 822, 822, 822, + 822, 822, 822, 822, 824, 825, 826, 827, 828, 822, + 822, 822, 822, 822, 829, 830, 831, 832, 833, 834, + + 835, 836, 837, 839, 840, 841, 842, 843, 845, 846, + 847, 849, 853, 854, 856, 857, 858, 859, 822, 861, + 862, 863, 864, 865, 866, 867, 868, 870, 871, 872, + 873, 874, 875, 878, 881, 882, 883, 884, 885, 886, + 887, 888, 889, 890, 891, 822, 822, 855, 855, 893, + 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, + 895, 896, 897, 899, 900, 855, 855, 855, 855, 855, + 901, 902, 903, 904, 905, 906, 908, 909, 910, 911, + 912, 913, 914, 915, 916, 917, 918, 920, 922, 923, + 924, 925, 926, 927, 855, 928, 929, 930, 931, 932, + + 933, 934, 935, 939, 940, 941, 943, 944, 945, 946, + 947, 948, 949, 950, 951, 952, 954, 955, 956, 957, + 958, 855, 855, 959, 960, 961, 962, 963, 964, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, - 988, 990, 991, 992, 993, 994, 996, 997, 999, 1000, - 1001, 1002, 1003, 1004, 1006, 1007, 1008, 1009, 1010, 1011, - 1012, 1013, 1015, 1016, 1019, 1020, 710, 1020, 1021, 709, - 1021, 1022, 708, 1022, 1023, 707, 1023, 706, 705, 704, - 703, 702, 701, 700, 699, 698, 697, 696, 695, 694, - - 693, 692, 691, 690, 689, 688, 686, 685, 683, 682, - 681, 680, 679, 677, 675, 674, 673, 672, 671, 670, - 669, 668, 667, 666, 665, 664, 663, 662, 661, 660, - 659, 658, 657, 655, 654, 653, 651, 650, 649, 648, - 646, 645, 644, 643, 642, 641, 640, 639, 638, 637, - 635, 633, 632, 631, 630, 629, 628, 624, 623, 622, - 620, 618, 617, 616, 615, 614, 613, 612, 611, 609, - 607, 604, 603, 600, 599, 598, 597, 594, 593, 592, - 589, 588, 586, 585, 584, 583, 582, 581, 580, 579, - 577, 576, 574, 573, 572, 571, 570, 567, 566, 565, - - 564, 562, 561, 560, 559, 558, 557, 555, 552, 551, - 550, 549, 546, 545, 544, 543, 542, 541, 540, 537, - 536, 534, 533, 532, 531, 530, 529, 527, 525, 524, - 523, 522, 521, 520, 519, 518, 517, 515, 514, 513, - 512, 511, 508, 506, 505, 504, 501, 499, 498, 497, - 496, 495, 493, 492, 490, 489, 487, 486, 485, 481, - 479, 477, 476, 475, 473, 472, 471, 470, 469, 468, - 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, - 457, 456, 455, 454, 453, 451, 450, 449, 448, 447, - 446, 445, 442, 441, 440, 439, 438, 437, 434, 430, - - 429, 428, 427, 425, 424, 423, 422, 421, 420, 418, - 417, 416, 415, 414, 413, 411, 410, 408, 407, 406, - 405, 404, 402, 401, 400, 399, 398, 397, 396, 395, - 394, 393, 392, 391, 390, 389, 388, 386, 384, 382, - 381, 379, 378, 377, 376, 375, 374, 373, 371, 369, - 368, 367, 365, 364, 363, 362, 361, 360, 359, 358, - 356, 355, 354, 351, 350, 349, 348, 347, 345, 343, - 342, 341, 340, 339, 338, 336, 335, 334, 333, 332, - 331, 329, 328, 327, 325, 324, 323, 322, 316, 315, - 314, 313, 312, 311, 309, 308, 306, 305, 304, 303, - - 302, 301, 300, 299, 298, 297, 296, 295, 293, 292, - 291, 290, 289, 288, 287, 286, 285, 284, 283, 282, - 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, - 271, 270, 269, 268, 267, 266, 265, 264, 263, 262, - 261, 260, 259, 258, 257, 256, 255, 254, 252, 251, - 250, 249, 248, 247, 245, 243, 241, 240, 239, 238, - 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, - 227, 226, 225, 224, 223, 222, 221, 220, 219, 218, - 217, 216, 215, 214, 213, 212, 211, 209, 208, 207, - 206, 205, 194, 193, 190, 189, 188, 187, 186, 185, - - 184, 183, 182, 181, 175, 173, 170, 168, 164, 163, - 162, 161, 159, 154, 153, 152, 150, 145, 144, 143, - 142, 141, 140, 139, 138, 137, 136, 135, 133, 132, - 131, 130, 129, 128, 126, 125, 124, 123, 122, 121, - 120, 119, 118, 117, 116, 114, 113, 112, 111, 110, - 109, 108, 107, 106, 105, 104, 102, 101, 100, 98, - 96, 95, 94, 93, 92, 91, 90, 89, 87, 86, - 85, 84, 83, 82, 81, 69, 67, 66, 64, 55, - 54, 3, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018 + 988, 989, 991, 992, 993, 994, 995, 997, 998, 1000, + 1001, 1002, 1003, 1004, 1005, 1007, 1008, 1009, 1010, 1011, + 1012, 1013, 1014, 1016, 1017, 1020, 1021, 714, 1021, 1022, + 711, 1022, 1023, 710, 1023, 1024, 709, 1024, 708, 707, + 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, + + 696, 695, 694, 693, 692, 691, 690, 689, 687, 686, + 684, 683, 682, 681, 680, 678, 676, 675, 674, 673, + 672, 671, 670, 669, 668, 667, 666, 665, 664, 663, + 662, 661, 660, 659, 658, 656, 655, 653, 651, 650, + 649, 648, 646, 645, 644, 643, 642, 641, 640, 639, + 638, 637, 635, 633, 632, 631, 630, 629, 628, 624, + 623, 622, 620, 618, 617, 616, 615, 614, 613, 612, + 611, 609, 607, 604, 603, 600, 599, 598, 597, 594, + 593, 592, 589, 588, 586, 585, 584, 583, 582, 581, + 580, 579, 577, 574, 573, 572, 571, 570, 567, 566, + + 565, 564, 562, 561, 560, 559, 558, 557, 555, 552, + 551, 550, 549, 546, 545, 544, 543, 542, 541, 540, + 537, 536, 534, 533, 532, 531, 530, 529, 527, 525, + 524, 523, 522, 521, 520, 519, 518, 517, 515, 514, + 513, 512, 511, 508, 506, 505, 504, 501, 499, 498, + 497, 496, 495, 493, 492, 490, 489, 487, 486, 485, + 481, 479, 477, 476, 475, 473, 472, 471, 470, 469, + 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, + 458, 457, 456, 455, 454, 453, 451, 450, 449, 448, + 447, 446, 445, 442, 441, 440, 439, 438, 437, 434, + + 430, 429, 428, 427, 425, 424, 423, 422, 421, 420, + 418, 417, 416, 415, 414, 413, 411, 410, 408, 407, + 406, 405, 404, 402, 401, 400, 399, 398, 397, 396, + 395, 394, 393, 392, 391, 390, 389, 388, 386, 384, + 382, 381, 379, 378, 377, 376, 375, 374, 373, 371, + 369, 368, 367, 365, 364, 363, 362, 361, 360, 359, + 358, 356, 355, 354, 351, 350, 349, 348, 347, 345, + 343, 342, 341, 340, 339, 338, 336, 335, 334, 333, + 332, 331, 329, 328, 327, 325, 324, 323, 322, 316, + 315, 314, 313, 312, 311, 309, 308, 306, 305, 304, + + 303, 302, 301, 300, 299, 298, 297, 296, 295, 293, + 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, + 282, 281, 280, 279, 278, 277, 276, 275, 274, 273, + 272, 271, 270, 269, 268, 267, 266, 265, 264, 263, + 262, 261, 260, 259, 258, 257, 256, 255, 254, 252, + 251, 250, 249, 248, 247, 245, 243, 241, 240, 239, + 238, 237, 236, 235, 234, 233, 232, 231, 230, 229, + 228, 227, 226, 225, 224, 223, 222, 221, 220, 219, + 218, 217, 216, 215, 214, 213, 212, 211, 209, 208, + 207, 206, 205, 194, 193, 190, 189, 188, 187, 186, + + 185, 184, 183, 182, 181, 175, 173, 170, 168, 164, + 163, 162, 161, 159, 154, 153, 152, 150, 145, 144, + 143, 142, 141, 140, 139, 138, 137, 136, 135, 133, + 132, 131, 130, 129, 128, 126, 125, 124, 123, 122, + 121, 120, 119, 118, 117, 116, 114, 113, 112, 111, + 110, 109, 108, 107, 106, 105, 104, 102, 101, 100, + 98, 96, 95, 94, 93, 92, 91, 90, 89, 87, + 86, 85, 84, 83, 82, 81, 69, 67, 66, 64, + 55, 54, 3, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019 } ; static yy_state_type yy_last_accepting_state; @@ -1000,7 +1000,7 @@ char *yytext; #define INITIAL 0 #line 2 "Gmsh.l" -// $Id: Gmsh.yy.cpp,v 1.135 2002-03-12 19:07:33 geuzaine Exp $ +// $Id: Gmsh.yy.cpp,v 1.136 2002-04-06 00:59:49 geuzaine Exp $ #include <stdio.h> #include <stdlib.h> @@ -1248,13 +1248,13 @@ yy_match: while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1019 ) + if ( yy_current_state >= 1020 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 1283 ); + while ( yy_base[yy_current_state] != 1284 ); yy_find_action: yy_act = yy_accept[yy_current_state]; @@ -1568,172 +1568,172 @@ return tExp ; case 58: YY_RULE_SETUP #line 127 "Gmsh.l" -return tEllipsis; +return tEllipse; YY_BREAK case 59: YY_RULE_SETUP #line 128 "Gmsh.l" -return tExtrude; +return tEllipse; YY_BREAK case 60: YY_RULE_SETUP #line 129 "Gmsh.l" -return tElliptic; +return tExtrude; YY_BREAK case 61: YY_RULE_SETUP #line 130 "Gmsh.l" -return tELLIPSE; +return tElliptic; YY_BREAK case 62: YY_RULE_SETUP #line 131 "Gmsh.l" -return tEndFor; +return tELLIPSE; YY_BREAK case 63: YY_RULE_SETUP #line 132 "Gmsh.l" -return tEndIf; +return tEndFor; YY_BREAK case 64: YY_RULE_SETUP #line 133 "Gmsh.l" -return tExit; +return tEndIf; YY_BREAK case 65: YY_RULE_SETUP -#line 135 "Gmsh.l" -return tFabs ; +#line 134 "Gmsh.l" +return tExit; YY_BREAK case 66: YY_RULE_SETUP #line 136 "Gmsh.l" -return tFloor ; +return tFabs ; YY_BREAK case 67: YY_RULE_SETUP #line 137 "Gmsh.l" -return tFmod ; +return tFloor ; YY_BREAK case 68: YY_RULE_SETUP #line 138 "Gmsh.l" -return tFor; +return tFmod ; YY_BREAK case 69: YY_RULE_SETUP #line 139 "Gmsh.l" -return tFunction; +return tFor; YY_BREAK case 70: YY_RULE_SETUP -#line 141 "Gmsh.l" -return tHypot ; +#line 140 "Gmsh.l" +return tFunction; YY_BREAK case 71: YY_RULE_SETUP -#line 143 "Gmsh.l" -return tIn; +#line 142 "Gmsh.l" +return tHypot ; YY_BREAK case 72: YY_RULE_SETUP #line 144 "Gmsh.l" -return tIf; +return tIn; YY_BREAK case 73: YY_RULE_SETUP #line 145 "Gmsh.l" -return tIntersect; +return tIf; YY_BREAK case 74: YY_RULE_SETUP -#line 147 "Gmsh.l" -return tKnots; +#line 146 "Gmsh.l" +return tIntersect; YY_BREAK case 75: YY_RULE_SETUP -#line 149 "Gmsh.l" -return tLength; +#line 148 "Gmsh.l" +return tKnots; YY_BREAK case 76: YY_RULE_SETUP #line 150 "Gmsh.l" -return tLine; +return tLength; YY_BREAK case 77: YY_RULE_SETUP #line 151 "Gmsh.l" -return tLoop; +return tLine; YY_BREAK case 78: YY_RULE_SETUP #line 152 "Gmsh.l" -return tLog ; +return tLoop; YY_BREAK case 79: YY_RULE_SETUP #line 153 "Gmsh.l" -return tLog10 ; +return tLog ; YY_BREAK case 80: YY_RULE_SETUP #line 154 "Gmsh.l" -return tLayers; +return tLog10 ; YY_BREAK case 81: YY_RULE_SETUP -#line 156 "Gmsh.l" -return tModulo ; +#line 155 "Gmsh.l" +return tLayers; YY_BREAK case 82: YY_RULE_SETUP #line 157 "Gmsh.l" -return tMesh; +return tModulo ; YY_BREAK case 83: YY_RULE_SETUP #line 158 "Gmsh.l" -return tMPI_Rank; +return tMesh; YY_BREAK case 84: YY_RULE_SETUP #line 159 "Gmsh.l" -return tMPI_Size; +return tMPI_Rank; YY_BREAK case 85: YY_RULE_SETUP -#line 161 "Gmsh.l" -return tNurbs; +#line 160 "Gmsh.l" +return tMPI_Size; YY_BREAK case 86: YY_RULE_SETUP -#line 163 "Gmsh.l" -return tOrder; +#line 162 "Gmsh.l" +return tNurbs; YY_BREAK case 87: YY_RULE_SETUP -#line 165 "Gmsh.l" -return tPhysical; +#line 164 "Gmsh.l" +return tOrder; YY_BREAK case 88: YY_RULE_SETUP #line 166 "Gmsh.l" -return tPi; +return tPhysical; YY_BREAK case 89: YY_RULE_SETUP #line 167 "Gmsh.l" -return tPlane; +return tPi; YY_BREAK case 90: YY_RULE_SETUP #line 168 "Gmsh.l" -return tPoint; +return tPlane; YY_BREAK case 91: YY_RULE_SETUP #line 169 "Gmsh.l" -return tProgression; +return tPoint; YY_BREAK case 92: YY_RULE_SETUP @@ -1743,490 +1743,495 @@ return tProgression; case 93: YY_RULE_SETUP #line 171 "Gmsh.l" -return tParametric; +return tProgression; YY_BREAK case 94: YY_RULE_SETUP #line 172 "Gmsh.l" -return tPrintf; +return tParametric; YY_BREAK case 95: YY_RULE_SETUP #line 173 "Gmsh.l" -return tPlugin; +return tPrintf; YY_BREAK case 96: YY_RULE_SETUP -#line 175 "Gmsh.l" -return tRecombine; +#line 174 "Gmsh.l" +return tPlugin; YY_BREAK case 97: YY_RULE_SETUP #line 176 "Gmsh.l" -return tRotate; +return tRecombine; YY_BREAK case 98: YY_RULE_SETUP #line 177 "Gmsh.l" -return tRuled; +return tRotate; YY_BREAK case 99: YY_RULE_SETUP #line 178 "Gmsh.l" -return tRand; +return tRuled; YY_BREAK case 100: YY_RULE_SETUP #line 179 "Gmsh.l" -return tReturn; +return tRand; YY_BREAK case 101: YY_RULE_SETUP -#line 181 "Gmsh.l" -return tSqrt ; +#line 180 "Gmsh.l" +return tReturn; YY_BREAK case 102: YY_RULE_SETUP #line 182 "Gmsh.l" -return tSin ; +return tSqrt ; YY_BREAK case 103: YY_RULE_SETUP #line 183 "Gmsh.l" -return tSinh ; +return tSin ; YY_BREAK case 104: YY_RULE_SETUP #line 184 "Gmsh.l" -return tSpline; +return tSinh ; YY_BREAK case 105: YY_RULE_SETUP #line 185 "Gmsh.l" -return tSurface; +return tSpline; YY_BREAK case 106: YY_RULE_SETUP #line 186 "Gmsh.l" -return tSymmetry; +return tSurface; YY_BREAK case 107: YY_RULE_SETUP #line 187 "Gmsh.l" -return tSprintf ; +return tSymmetry; YY_BREAK case 108: YY_RULE_SETUP #line 188 "Gmsh.l" -return tStrCat ; +return tSprintf ; YY_BREAK case 109: YY_RULE_SETUP #line 189 "Gmsh.l" -return tStrPrefix ; +return tStrCat ; YY_BREAK case 110: YY_RULE_SETUP -#line 191 "Gmsh.l" -return tTransfinite; +#line 190 "Gmsh.l" +return tStrPrefix ; YY_BREAK case 111: YY_RULE_SETUP #line 192 "Gmsh.l" -return tTranslate; +return tTransfinite; YY_BREAK case 112: YY_RULE_SETUP #line 193 "Gmsh.l" -return tTanh ; +return tTranslate; YY_BREAK case 113: YY_RULE_SETUP #line 194 "Gmsh.l" -return tTan; +return tTanh ; YY_BREAK case 114: YY_RULE_SETUP #line 195 "Gmsh.l" -return tTrimmed; +return tTan; YY_BREAK case 115: YY_RULE_SETUP -#line 197 "Gmsh.l" -return tUsing; +#line 196 "Gmsh.l" +return tTrimmed; YY_BREAK case 116: YY_RULE_SETUP -#line 199 "Gmsh.l" -return tVolume; +#line 198 "Gmsh.l" +return tUsing; YY_BREAK case 117: YY_RULE_SETUP -#line 201 "Gmsh.l" -return tWith; +#line 200 "Gmsh.l" +return tVolume; YY_BREAK case 118: YY_RULE_SETUP -#line 203 "Gmsh.l" -return tScalarTetrahedron; +#line 202 "Gmsh.l" +return tWith; YY_BREAK case 119: YY_RULE_SETUP #line 204 "Gmsh.l" -return tVectorTetrahedron; +return tScalarTetrahedron; YY_BREAK case 120: YY_RULE_SETUP #line 205 "Gmsh.l" -return tTensorTetrahedron; +return tVectorTetrahedron; YY_BREAK case 121: YY_RULE_SETUP #line 206 "Gmsh.l" -return tScalarTriangle; +return tTensorTetrahedron; YY_BREAK case 122: YY_RULE_SETUP #line 207 "Gmsh.l" -return tVectorTriangle; +return tScalarTriangle; YY_BREAK case 123: YY_RULE_SETUP #line 208 "Gmsh.l" -return tTensorTriangle; +return tVectorTriangle; YY_BREAK case 124: YY_RULE_SETUP #line 209 "Gmsh.l" -return tScalarLine; +return tTensorTriangle; YY_BREAK case 125: YY_RULE_SETUP #line 210 "Gmsh.l" -return tVectorLine; +return tScalarLine; YY_BREAK case 126: YY_RULE_SETUP #line 211 "Gmsh.l" -return tTensorLine; +return tVectorLine; YY_BREAK case 127: YY_RULE_SETUP #line 212 "Gmsh.l" -return tScalarPoint; +return tTensorLine; YY_BREAK case 128: YY_RULE_SETUP #line 213 "Gmsh.l" -return tVectorPoint; +return tScalarPoint; YY_BREAK case 129: YY_RULE_SETUP #line 214 "Gmsh.l" -return tTensorPoint; +return tVectorPoint; YY_BREAK case 130: YY_RULE_SETUP #line 215 "Gmsh.l" -return tText2D; +return tTensorPoint; YY_BREAK case 131: YY_RULE_SETUP #line 216 "Gmsh.l" -return tText3D; +return tText2D; YY_BREAK case 132: YY_RULE_SETUP -#line 219 "Gmsh.l" -return tCARTESIAN_POINT; +#line 217 "Gmsh.l" +return tText3D; YY_BREAK case 133: YY_RULE_SETUP #line 220 "Gmsh.l" -return tB_SPLINE_SURFACE_WITH_KNOTS; +return tCARTESIAN_POINT; YY_BREAK case 134: YY_RULE_SETUP #line 221 "Gmsh.l" -return tB_SPLINE_CURVE_WITH_KNOTS; +return tB_SPLINE_SURFACE_WITH_KNOTS; YY_BREAK case 135: YY_RULE_SETUP #line 222 "Gmsh.l" -return tUNSPECIFIED; +return tB_SPLINE_CURVE_WITH_KNOTS; YY_BREAK case 136: YY_RULE_SETUP #line 223 "Gmsh.l" -return tCONTINUOUS; +return tUNSPECIFIED; YY_BREAK case 137: YY_RULE_SETUP #line 224 "Gmsh.l" -return tFALSE; +return tCONTINUOUS; YY_BREAK case 138: YY_RULE_SETUP #line 225 "Gmsh.l" -return tTRUE; +return tFALSE; YY_BREAK case 139: YY_RULE_SETUP #line 226 "Gmsh.l" -return tU; +return tTRUE; YY_BREAK case 140: YY_RULE_SETUP #line 227 "Gmsh.l" -return tV; +return tU; YY_BREAK case 141: YY_RULE_SETUP #line 228 "Gmsh.l" -return tORIENTED_EDGE; +return tV; YY_BREAK case 142: YY_RULE_SETUP #line 229 "Gmsh.l" -return tEDGE_CURVE; +return tORIENTED_EDGE; YY_BREAK case 143: YY_RULE_SETUP #line 230 "Gmsh.l" -return tEDGE_LOOP; +return tEDGE_CURVE; YY_BREAK case 144: YY_RULE_SETUP #line 231 "Gmsh.l" -return tVERTEX_POINT; +return tEDGE_LOOP; YY_BREAK case 145: YY_RULE_SETUP #line 232 "Gmsh.l" -return tFACE_OUTER_BOUND; +return tVERTEX_POINT; YY_BREAK case 146: YY_RULE_SETUP #line 233 "Gmsh.l" -return tFACE_BOUND; +return tFACE_OUTER_BOUND; YY_BREAK case 147: YY_RULE_SETUP #line 234 "Gmsh.l" -return tADVANCED_FACE; +return tFACE_BOUND; YY_BREAK case 148: YY_RULE_SETUP #line 235 "Gmsh.l" -return tLine; +return tADVANCED_FACE; YY_BREAK case 149: YY_RULE_SETUP #line 236 "Gmsh.l" -return tVECTOR; +return tLine; YY_BREAK case 150: YY_RULE_SETUP #line 237 "Gmsh.l" -return tDIRECTION; +return tVECTOR; YY_BREAK case 151: YY_RULE_SETUP #line 238 "Gmsh.l" -return tAXIS2_PLACEMENT_3D; +return tDIRECTION; YY_BREAK case 152: YY_RULE_SETUP #line 239 "Gmsh.l" -return tPLANE; +return tAXIS2_PLACEMENT_3D; YY_BREAK case 153: YY_RULE_SETUP #line 240 "Gmsh.l" -return tHEADER; +return tPLANE; YY_BREAK case 154: YY_RULE_SETUP #line 241 "Gmsh.l" -return tDATA; +return tHEADER; YY_BREAK case 155: YY_RULE_SETUP #line 242 "Gmsh.l" -return tFILE_SCHEMA; +return tDATA; YY_BREAK case 156: YY_RULE_SETUP #line 243 "Gmsh.l" -return tFILE_NAME; +return tFILE_SCHEMA; YY_BREAK case 157: YY_RULE_SETUP #line 244 "Gmsh.l" -return tFILE_DESCRIPTION; +return tFILE_NAME; YY_BREAK case 158: YY_RULE_SETUP #line 245 "Gmsh.l" -return tISO; +return tFILE_DESCRIPTION; YY_BREAK case 159: YY_RULE_SETUP #line 246 "Gmsh.l" -return tENDISO; +return tISO; YY_BREAK case 160: YY_RULE_SETUP #line 247 "Gmsh.l" -return tENDSEC; +return tENDISO; YY_BREAK case 161: YY_RULE_SETUP #line 248 "Gmsh.l" -return tCLOSED_SHELL; +return tENDSEC; YY_BREAK case 162: YY_RULE_SETUP #line 249 "Gmsh.l" -return tADVANCED_BREP_SHAPE_REPRESENTATION; +return tCLOSED_SHELL; YY_BREAK case 163: YY_RULE_SETUP #line 250 "Gmsh.l" -return tMANIFOLD_SOLID_BREP; +return tADVANCED_BREP_SHAPE_REPRESENTATION; YY_BREAK case 164: YY_RULE_SETUP #line 251 "Gmsh.l" -return tCYLINDRICAL_SURFACE; +return tMANIFOLD_SOLID_BREP; YY_BREAK case 165: YY_RULE_SETUP #line 252 "Gmsh.l" -return tCONICAL_SURFACE; +return tCYLINDRICAL_SURFACE; YY_BREAK case 166: YY_RULE_SETUP #line 253 "Gmsh.l" -return tTOROIDAL_SURFACE; +return tCONICAL_SURFACE; YY_BREAK case 167: YY_RULE_SETUP #line 254 "Gmsh.l" -return tCIRCLE; +return tTOROIDAL_SURFACE; YY_BREAK case 168: YY_RULE_SETUP #line 255 "Gmsh.l" -return tTRIMMED_CURVE; +return tCIRCLE; YY_BREAK case 169: YY_RULE_SETUP #line 256 "Gmsh.l" -return tGEOMETRIC_SET; +return tTRIMMED_CURVE; YY_BREAK case 170: YY_RULE_SETUP #line 257 "Gmsh.l" -return tCOMPOSITE_CURVE_SEGMENT; +return tGEOMETRIC_SET; YY_BREAK case 171: YY_RULE_SETUP #line 258 "Gmsh.l" -return tCOMPOSITE_CURVE; +return tCOMPOSITE_CURVE_SEGMENT; YY_BREAK case 172: YY_RULE_SETUP #line 259 "Gmsh.l" -return tPRODUCT_DEFINITION; +return tCOMPOSITE_CURVE; YY_BREAK case 173: YY_RULE_SETUP #line 260 "Gmsh.l" -return tPRODUCT_DEFINITION_SHAPE; +return tPRODUCT_DEFINITION; YY_BREAK case 174: YY_RULE_SETUP #line 261 "Gmsh.l" -return tSHAPE_DEFINITION_REPRESENTATION; +return tPRODUCT_DEFINITION_SHAPE; YY_BREAK case 175: YY_RULE_SETUP -#line 263 "Gmsh.l" -return tVertex; +#line 262 "Gmsh.l" +return tSHAPE_DEFINITION_REPRESENTATION; YY_BREAK case 176: YY_RULE_SETUP #line 264 "Gmsh.l" -return tFacet; +return tVertex; YY_BREAK case 177: YY_RULE_SETUP #line 265 "Gmsh.l" -return tNormal; +return tFacet; YY_BREAK case 178: YY_RULE_SETUP #line 266 "Gmsh.l" -return tOuter; +return tNormal; YY_BREAK case 179: YY_RULE_SETUP #line 267 "Gmsh.l" -return tLoopSTL; +return tOuter; YY_BREAK case 180: YY_RULE_SETUP #line 268 "Gmsh.l" -return tEndLoop; +return tLoopSTL; YY_BREAK case 181: YY_RULE_SETUP #line 269 "Gmsh.l" -return tEndFacet; +return tEndLoop; YY_BREAK case 182: YY_RULE_SETUP #line 270 "Gmsh.l" -{skipline();return tEndSolid;} +return tEndFacet; YY_BREAK case 183: YY_RULE_SETUP #line 271 "Gmsh.l" -{skipline();return tSolid;} +{skipline();return tEndSolid;} YY_BREAK case 184: YY_RULE_SETUP -#line 273 "Gmsh.l" -{yylval.d = (double)atoi((char*)(yytext+1)); return tDOUBLE;} +#line 272 "Gmsh.l" +{skipline();return tSolid;} YY_BREAK case 185: -#line 276 "Gmsh.l" +YY_RULE_SETUP +#line 274 "Gmsh.l" +{yylval.d = (double)atoi((char*)(yytext+1)); return tDOUBLE;} + YY_BREAK case 186: #line 277 "Gmsh.l" case 187: #line 278 "Gmsh.l" case 188: +#line 279 "Gmsh.l" +case 189: YY_RULE_SETUP -#line 278 "Gmsh.l" +#line 279 "Gmsh.l" {yylval.d = atof((char *)yytext); return tDOUBLE;} YY_BREAK -case 189: +case 190: YY_RULE_SETUP -#line 280 "Gmsh.l" +#line 281 "Gmsh.l" {yylval.c = strsave((char*)yytext); return tSTRING;} YY_BREAK -case 190: +case 191: YY_RULE_SETUP -#line 282 "Gmsh.l" +#line 283 "Gmsh.l" return yytext[0]; YY_BREAK -case 191: +case 192: YY_RULE_SETUP -#line 284 "Gmsh.l" +#line 285 "Gmsh.l" ECHO; YY_BREAK -#line 2230 "Gmsh.yy.cpp" +#line 2235 "Gmsh.yy.cpp" case YY_STATE_EOF(INITIAL): yyterminate(); @@ -2518,7 +2523,7 @@ static yy_state_type yy_get_previous_state() while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1019 ) + if ( yy_current_state >= 1020 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -2553,11 +2558,11 @@ yy_state_type yy_current_state; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1019 ) + if ( yy_current_state >= 1020 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 1018); + yy_is_jam = (yy_current_state == 1019); return yy_is_jam ? 0 : yy_current_state; } @@ -3107,7 +3112,7 @@ int main() return 0; } #endif -#line 284 "Gmsh.l" +#line 285 "Gmsh.l" #undef yywrap -- GitLab