Skip to content

Commit 5bd967d

Browse files
committed
regen
1 parent 4fd35fd commit 5bd967d

File tree

147 files changed

+481
-916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+481
-916
lines changed

flopy4/mf6/codec/reader/grammar/generated/chf-cdb.lark

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,16 @@ save_flows: "save_flows"i
3232
obs_filerecord: "filein"i "obs6"i string
3333
maxbound: "maxbound"i integer
3434
// Recarray rules for period data (stress_period_data, etc.)
35-
stress_period_data: stress_record+
35+
stress_period_data: record+
3636

3737
// Stress period record: tokens followed by newline, but stop at structural keywords
38-
stress_record: stress_token+ NEWLINE
39-
stress_token: number | _stress_word
40-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
38+
record: token+ NEWLINE
39+
token: number | _word
40+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
4141

4242
// Import typed grammar rules
4343
%import typed.integer -> integer
4444
%import typed.double -> double
4545
%import typed.number -> number
4646
%import typed.string -> string
47-
%import typed.simple_string -> simple_string
48-
%import typed.record -> record
49-
%import typed.list -> list
5047
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-chd.lark

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,16 @@ ts_filerecord: "ts6"i "filein"i string
3434
obs_filerecord: "filein"i "obs6"i string
3535
maxbound: "maxbound"i integer
3636
// Recarray rules for period data (stress_period_data, etc.)
37-
stress_period_data: stress_record+
37+
stress_period_data: record+
3838

3939
// Stress period record: tokens followed by newline, but stop at structural keywords
40-
stress_record: stress_token+ NEWLINE
41-
stress_token: number | _stress_word
42-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
40+
record: token+ NEWLINE
41+
token: number | _word
42+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
4343

4444
// Import typed grammar rules
4545
%import typed.integer -> integer
4646
%import typed.double -> double
4747
%import typed.number -> number
4848
%import typed.string -> string
49-
%import typed.simple_string -> simple_string
50-
%import typed.record -> record
51-
%import typed.list -> list
5249
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-cxs.lark

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,13 @@ crosssectiondata: "crosssectiondata"i recarray
3333
// Recarray rules for period data (stress_period_data, etc.)
3434

3535
// Stress period record: tokens followed by newline, but stop at structural keywords
36-
stress_record: stress_token+ NEWLINE
37-
stress_token: number | _stress_word
38-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
36+
record: token+ NEWLINE
37+
token: number | _word
38+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
3939

4040
// Import typed grammar rules
4141
%import typed.integer -> integer
4242
%import typed.double -> double
4343
%import typed.number -> number
4444
%import typed.string -> string
45-
%import typed.simple_string -> simple_string
46-
%import typed.record -> record
47-
%import typed.list -> list
4845
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-dfw.lark

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,13 @@ idcxs: "idcxs"i array
3535
// Recarray rules for period data (stress_period_data, etc.)
3636

3737
// Stress period record: tokens followed by newline, but stop at structural keywords
38-
stress_record: stress_token+ NEWLINE
39-
stress_token: number | _stress_word
40-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
38+
record: token+ NEWLINE
39+
token: number | _word
40+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
4141

4242
// Import typed grammar rules
4343
%import typed.integer -> integer
4444
%import typed.double -> double
4545
%import typed.number -> number
4646
%import typed.string -> string
47-
%import typed.simple_string -> simple_string
48-
%import typed.record -> record
49-
%import typed.list -> list
5047
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-disv1d.lark

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,13 @@ cell1d: "cell1d"i recarray
4545
// Recarray rules for period data (stress_period_data, etc.)
4646

4747
// Stress period record: tokens followed by newline, but stop at structural keywords
48-
stress_record: stress_token+ NEWLINE
49-
stress_token: number | _stress_word
50-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
48+
record: token+ NEWLINE
49+
token: number | _word
50+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
5151

5252
// Import typed grammar rules
5353
%import typed.integer -> integer
5454
%import typed.double -> double
5555
%import typed.number -> number
5656
%import typed.string -> string
57-
%import typed.simple_string -> simple_string
58-
%import typed.record -> record
59-
%import typed.list -> list
6057
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-evp.lark

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,16 @@ ts_filerecord: "ts6"i "filein"i string
3434
obs_filerecord: "filein"i "obs6"i string
3535
maxbound: "maxbound"i integer
3636
// Recarray rules for period data (stress_period_data, etc.)
37-
stress_period_data: stress_record+
37+
stress_period_data: record+
3838

3939
// Stress period record: tokens followed by newline, but stop at structural keywords
40-
stress_record: stress_token+ NEWLINE
41-
stress_token: number | _stress_word
42-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
40+
record: token+ NEWLINE
41+
token: number | _word
42+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
4343

4444
// Import typed grammar rules
4545
%import typed.integer -> integer
4646
%import typed.double -> double
4747
%import typed.number -> number
4848
%import typed.string -> string
49-
%import typed.simple_string -> simple_string
50-
%import typed.record -> record
51-
%import typed.list -> list
5249
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-flw.lark

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,16 @@ ts_filerecord: "ts6"i "filein"i string
3434
obs_filerecord: "filein"i "obs6"i string
3535
maxbound: "maxbound"i integer
3636
// Recarray rules for period data (stress_period_data, etc.)
37-
stress_period_data: stress_record+
37+
stress_period_data: record+
3838

3939
// Stress period record: tokens followed by newline, but stop at structural keywords
40-
stress_record: stress_token+ NEWLINE
41-
stress_token: number | _stress_word
42-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
40+
record: token+ NEWLINE
41+
token: number | _word
42+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
4343

4444
// Import typed grammar rules
4545
%import typed.integer -> integer
4646
%import typed.double -> double
4747
%import typed.number -> number
4848
%import typed.string -> string
49-
%import typed.simple_string -> simple_string
50-
%import typed.record -> record
51-
%import typed.list -> list
5249
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-ic.lark

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,13 @@ strt: "strt"i array
2626
// Recarray rules for period data (stress_period_data, etc.)
2727

2828
// Stress period record: tokens followed by newline, but stop at structural keywords
29-
stress_record: stress_token+ NEWLINE
30-
stress_token: number | _stress_word
31-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
29+
record: token+ NEWLINE
30+
token: number | _word
31+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
3232

3333
// Import typed grammar rules
3434
%import typed.integer -> integer
3535
%import typed.double -> double
3636
%import typed.number -> number
3737
%import typed.string -> string
38-
%import typed.simple_string -> simple_string
39-
%import typed.record -> record
40-
%import typed.list -> list
4138
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-nam.lark

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,13 @@ packages: "packages"i recarray
3030
// Recarray rules for period data (stress_period_data, etc.)
3131

3232
// Stress period record: tokens followed by newline, but stop at structural keywords
33-
stress_record: stress_token+ NEWLINE
34-
stress_token: number | _stress_word
35-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
33+
record: token+ NEWLINE
34+
token: number | _word
35+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
3636

3737
// Import typed grammar rules
3838
%import typed.integer -> integer
3939
%import typed.double -> double
4040
%import typed.number -> number
4141
%import typed.string -> string
42-
%import typed.simple_string -> simple_string
43-
%import typed.record -> record
44-
%import typed.list -> list
4542
%import typed.array -> array

flopy4/mf6/codec/reader/grammar/generated/chf-oc.lark

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,13 @@ printrecord: "print"i string keystring
3232
// Recarray rules for period data (stress_period_data, etc.)
3333

3434
// Stress period record: tokens followed by newline, but stop at structural keywords
35-
stress_record: stress_token+ NEWLINE
36-
stress_token: number | _stress_word
37-
_stress_word: /(?!(?i:begin|end|period))[a-zA-Z0-9._'~,-\\(\\)]+/
35+
record: token+ NEWLINE
36+
token: number | _word
37+
_word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
3838

3939
// Import typed grammar rules
4040
%import typed.integer -> integer
4141
%import typed.double -> double
4242
%import typed.number -> number
4343
%import typed.string -> string
44-
%import typed.simple_string -> simple_string
45-
%import typed.record -> record
46-
%import typed.list -> list
4744
%import typed.array -> array

0 commit comments

Comments
 (0)