-
Notifications
You must be signed in to change notification settings - Fork 0
/
read_input.l
286 lines (221 loc) · 5.56 KB
/
read_input.l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
SPC [[:blank:]]+
CMD [:][[:space:]]+
RLN [1-9(10)(11)(12)(13)(14)(15)(16)][:]
DIGIT [[:digit:]]
ZT [0-9(10)(11)]
IDXEX ("-"{DIGIT}+)
SIGN ("+"|"-")
FLT {SIGN}?{DIGIT}*+"."{DIGIT}*(e("-"|"+")?{DIGIT}+)?
FILENAME [a-zA-Z0-9_".""-""/"][a-zA-z0-9"."_"-""/"]+
NAME [a-zA-Z0-9_]+
TYPE [0-9A-Z]+
%{
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include"cudaglobal.h"
#include"global.h"
#include"read_input.h"
int line_of_file=1;
int comment_caller;
int a,b;
float c;
char name[100];
// Overrelaxation parameters
int orxmaxit;
int orxcheckinterval;
double orxeps;
int orxflag = 0;
// Sim. ann. parameters
SAPARAM_LIST saparam;
int saflag = 0;
//saparam.checkint = 1;
// Therm. parameters
THERMPARAM_LIST thermparam;
int thermflag = 0;
//thermparam.checkint = 1;
int randseed;
/* Name of the parsing routine */
#define YY_DECL int parse_input()
#define YY_NO_UNPUT
%}
%option never-interactive
%x TT
%x LL
%x INITORX
%x OVERRELAX
%x INITSA
%x SIMANN
%x INITTHERM
%x THERM
%x RND
%x ERROR
%x COMMENT
%%
^T{SPC}*={SPC}* BEGIN(TT);
^L{SPC}*={SPC}* BEGIN(LL);
^BeginORX BEGIN(INITORX);
^RandSeed{SPC}*={SPC}* BEGIN(RND);
^BeginSA BEGIN(INITSA);
^BeginTHERM BEGIN(INITTHERM);
<TT>{DIGIT}+ {
T = atoi(yytext);
printf("T = %s\n", yytext);
}
<LL>{DIGIT}+ {
L = atoi(yytext);
printf("L = %s\n", yytext);
}
<RND>{DIGIT}+ {
randseed = atoi(yytext);
printf("Random Seed = %s\n", yytext);
}
<INITSA>Init{SPC}* {
printf("Found sim. annealing block in line %d\n", line_of_file);
BEGIN(SIMANN);
}
<SIMANN>{
{SPC}*Tmin{SPC}*={SPC}*{FLT}+ {
sscanf(yytext, " %[2a-zA-Z] = %f", name, &c);
saparam.Tmin = c;
printf(" SA Tmin set to %e in line %d\n", c, line_of_file);
}
{SPC}*Tmax{SPC}*={SPC}*{FLT}+ {
sscanf(yytext, " %[2a-zA-Z] = %f", name, &c);
saparam.Tmax = c;
printf(" SA Tmax set to %e in line %d\n", c, line_of_file);
}
{SPC}*Nstep{SPC}*={SPC}*{DIGIT}+ {
sscanf(yytext, " %[2a-zA-Z] = %d", name, &a);
saparam.N = a;
printf(" SA steps set to %d line %d\n", a, line_of_file);
}
{SPC}*ckinterval{SPC}*={SPC}*{DIGIT}+ {
sscanf(yytext, " %[2a-zA-Z] = %d", name, &a);
saparam.checkint = a;
printf(" SA check interval set to %d line %d\n", a, line_of_file);
}
{SPC}*expo{SPC}*={SPC}*{FLT} {
sscanf(yytext, " %[2a-zA-Z] = %f", name, &c);
saparam.expo = c;
printf(" SA temperature expo set to %e in line %d\n", c, line_of_file);
}
EndSAInit{SPC}* {
saflag=1;
printf("End sim. annealing block in line %d\n\n", line_of_file);
BEGIN(0);
}
}
<INITTHERM>Init{SPC}* {
printf("Found thermalization block in line %d\n", line_of_file);
BEGIN(THERM);
}
<THERM>{
{SPC}*Nsweep{SPC}*={SPC}*{DIGIT}+ {
sscanf(yytext, " %[2a-zA-Z] = %d", name, &a);
thermparam.Nsweep = a;
printf(" Nsweep set to %d line %d\n", a, line_of_file);
}
{SPC}*Nsave{SPC}*={SPC}*{DIGIT}+ {
sscanf(yytext, " %[2a-zA-Z] = %d", name, &a);
thermparam.Nsave = a;
printf(" Nsave set to %d line %d\n", a, line_of_file);
}
{SPC}*ckinterval{SPC}*={SPC}*{DIGIT}+ {
sscanf(yytext, " %[2a-zA-Z] = %d", name, &a);
thermparam.checkint = a;
printf(" Therm. check interval set to %d line %d\n", a, line_of_file);
}
{SPC}*beta{SPC}*={SPC}*{FLT} {
sscanf(yytext, " %[2a-zA-Z] = %f", name, &c);
thermparam.beta = c;
printf(" beta set to %e in line %d\n", c, line_of_file);
}
{SPC}*start{SPC}*={SPC}*hot {
thermparam.startcond = 1;
printf(" using hot start in line %d\n", line_of_file);
}
{SPC}*start{SPC}*={SPC}*cold {
thermparam.startcond = 0;
printf(" using cold start in line %d\n", line_of_file);
}
EndTHERMInit{SPC}* {
thermflag=1;
printf("End thermalization block in line %d\n\n", line_of_file);
BEGIN(0);
}
}
<INITORX>Init{SPC}* {
printf("Found overrelaxation block in line %d\n", line_of_file);
BEGIN(OVERRELAX);
}
<OVERRELAX>{
{SPC}*eps{SPC}*={SPC}*{FLT} {
sscanf(yytext, " %[2a-zA-Z] = %f", name, &c);
orxeps = c;
printf(" Overrelaxation dAdA epsilon set to %e in line %d\n", c, line_of_file);
}
{SPC}*maxit{SPC}*={SPC}*{DIGIT}+ {
sscanf(yytext, " %[2a-zA-Z] = %d", name, &a);
orxmaxit = a;
printf(" Overrelaxation max iterations set to %d line %d\n", a, line_of_file);
}
{SPC}*ckinterval{SPC}*={SPC}*{DIGIT}+ {
sscanf(yytext, " %[2a-zA-Z] = %d", name, &a);
orxcheckinterval = a;
printf(" Overrelaxation check interval set to %d line %d\n", a, line_of_file);
}
EndORXInit{SPC}* {
orxflag=1;
printf("End overrelaxation block in line %d\n\n", line_of_file);
BEGIN(0);
}
}
<*>^# {
comment_caller = YY_START;
BEGIN(COMMENT);
}
<*>{SPC}*# {
comment_caller = YY_START;
BEGIN(COMMENT);
}
<COMMENT>[^\n]* {
BEGIN(comment_caller);
}
<*>. {
BEGIN(ERROR);
}
<ERROR>[^\t\n]* {
printf("Parsing error in line %d\nAborting...!\n", line_of_file);
printf("%s\n",yytext);
exit(1);
}
<INITORX,OVERRELAX,INITSA,SIMANN,INITTHERM,THERM>\n {
line_of_file++;
}
<*>\n {
line_of_file++;
BEGIN(0);
}
%%
/*
* Dummy (but not dumb) routine - well, function
*/
int yywrap()
{
return(1);
}
int read_input(char * conf_file){
if ((yyin = fopen(conf_file, "rt")) == NULL){
return(2);
}
yyout = fopen("/dev/null", "w");
parse_input();
LX=L;
LY=L;
LZ=L;
VOLUME=LX*LY*LZ*T;
fclose(yyout);
fclose(yyin);
return(0);
}