/[ff3d]/ff3d/language/parse.ff.yy
ViewVC logotype

Diff of /ff3d/language/parse.ff.yy

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by delpinux, Tue Feb 25 20:38:42 2003 UTC revision 1.3 by delpinux, Tue Apr 22 19:38:39 2003 UTC
# Line 1  Line 1 
1  %{  %{ /* -*- c++ -*- */
    /* -*- c++ -*- */  
2    
3     /*     /*
4      *  This file is part of ff3d - http://www.freefem.org/ff3d      *  This file is part of ff3d - http://www.freefem.org/ff3d
# Line 205  Line 204 
204  %token <realVariable> VARREALID "real_t variable"  %token <realVariable> VARREALID "real_t variable"
205  %token <vector3Variable> VARVECTID "vector variable"  %token <vector3Variable> VARVECTID "vector variable"
206  %token <functionVariable> VARFNCTID "function variable"  %token <functionVariable> VARFNCTID "function variable"
207  %token <meshVariable> MESHID STRUCT3DMESHID SURFMESHID TETRAHEDRAMESHID TRANSFORM  %token <meshVariable> MESHID STRUCT3DMESHID SURFMESHID TETRAHEDRAMESHID
208    
209  %token <sceneVariable> VARSCENEID "scene variable"  %token <sceneVariable> VARSCENEID "scene variable"
210  %token <domainVariable> VARDOMAINID "domain variable"  %token <domainVariable> VARDOMAINID "domain variable"
211  %token <unknownVariable> VARUNKNOWNID "unkown variable"  %token <unknownVariable> VARUNKNOWNID "unkown variable"
# Line 286  Line 286 
286  %type <expression> ofluxexp  %type <expression> ofluxexp
287  %type <ostreamExpressionList> ofluxexplist  %type <ostreamExpressionList> ofluxexplist
288    
289    %token TRANSFORM SIMPLIFY
290    
291  %token XX "x"  %token XX "x"
292  %token YY "y"  %token YY "y"
293  %token ZZ "z"  %token ZZ "z"
# Line 736  meshexp: Line 738  meshexp:
738  {  {
739    $$ = new MeshExpressionTransform($3, $5);    $$ = new MeshExpressionTransform($3, $5);
740  }  }
741    | SIMPLIFY '(' meshexp ')'
742    {
743      $$ = new MeshExpressionSimplify($3);
744    }
745  ;  ;
746    
747  structured3dmeshexp:  structured3dmeshexp:

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26