New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
convert.lex in branches/UKMO/dev_r5518_AMM15_package/NEMOGCM/EXTERNAL/AGRIF/LEX – NEMO

source: branches/UKMO/dev_r5518_AMM15_package/NEMOGCM/EXTERNAL/AGRIF/LEX/convert.lex @ 10248

Last change on this file since 10248 was 10248, checked in by kingr, 5 years ago

Merged 2015/nemo_v3_6_STABLE@6232

File size: 3.8 KB
Line 
1/******************************************************************************/
2/*                                                                            */
3/*     CONV (converter) for Agrif (Adaptive Grid Refinement In Fortran)       */
4/*                                                                            */
5/* Copyright or   or Copr. Laurent Debreu (Laurent.Debreu@imag.fr)            */
6/*                        Cyril Mazauric (Cyril_Mazauric@yahoo.fr)            */
7/* This software is governed by the CeCILL-C license under French law and     */
8/* abiding by the rules of distribution of free software.  You can  use,      */
9/* modify and/ or redistribute the software under the terms of the CeCILL-C   */
10/* license as circulated by CEA, CNRS and INRIA at the following URL          */
11/* "http://www.cecill.info".                                                  */
12/*                                                                            */
13/* As a counterpart to the access to the source code and  rights to copy,     */
14/* modify and redistribute granted by the license, users are provided only    */
15/* with a limited warranty  and the software's author,  the holder of the     */
16/* economic rights,  and the successive licensors  have only  limited         */
17/* liability.                                                                 */
18/*                                                                            */
19/* In this respect, the user's attention is drawn to the risks associated     */
20/* with loading,  using,  modifying and/or developing or reproducing the      */
21/* software by the user in light of its specific status of free software,     */
22/* that may mean  that it is complicated to manipulate,  and  that  also      */
23/* therefore means  that it is reserved for developers  and  experienced      */
24/* professionals having in-depth computer knowledge. Users are therefore      */
25/* encouraged to load and test the software's suitability as regards their    */
26/* requirements in conditions enabling the security of their systems and/or   */
27/* data to be ensured and,  more generally, to use and operate it in the      */
28/* same conditions as regards security.                                       */
29/*                                                                            */
30/* The fact that you are presently reading this means that you have had       */
31/* knowledge of the CeCILL-C license and that you accept its terms.           */
32/******************************************************************************/
33/* version 1.7                                                                */
34/******************************************************************************/
35%option warn
36%option noyywrap
37
38%s character
39%{
40#include <math.h>
41#include <stdlib.h>
42#include <string.h>
43
44#define YY_NO_INPUT
45%}
46
47SEPARATEUR      "::"
48COMMENTS        "%".*"%"
49PROBTYPE        "1D"|"2D"|"3D"
50USEITEM         "FIXED_GRIDS"|"ONLY_FIXED_GRIDS"|"F77"
51NAME            [a-zA-Z\_][a-zA-Z0-9\_]*
52INTEGER         [0-9]+
53NEXTLINE        \n+[ \t]+"$"|\n+[ \t]+"&"
54%%
55parammodule         { return TOK_MODULEMAIN; } /* name of the module                      */
56notgriddep          { return TOK_NOTGRIDDEP; } /* variable which are not grid dependent   */
57use                 { return TOK_USE; }
58{COMMENTS}          { }
59{SEPARATEUR}        { return TOK_SEP; }
60KIND                { return TOK_KIND; }
61\=                  { return TOK_EQUAL; }
62{USEITEM}           { strcpy(yylval.na,yytext); return TOK_USEITEM;  }
63{PROBTYPE}          { strcpy(yylval.na,yytext); return TOK_PROBTYPE; }  /* dimension of the problem */
64{NAME}              { strcpy(yylval.na,yytext); return TOK_NAME; }
65{INTEGER}           { strcpy(yylval.na,yytext); return TOK_CSTINT; }
66;|\,|\(|\)|:|\[|\]  { return (int) *yytext; }
67\n                  { line_num++; return (int) *yytext; }
68[ \t]+ ;
69%%
Note: See TracBrowser for help on using the repository browser.