forked from AbsInt/CompCert
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparser.messages
3511 lines (3182 loc) · 174 KB
/
parser.messages
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
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
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
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
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
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
966
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
program: WHILE
##
## Ends in an error in state: 0.
##
## program' -> . program [ # ]
##
## The known suffix of the stack is as follows:
##
##
Expected "functions {" or "data {" or "transformed data {" or "parameters {" or "transformed parameters {" or "model {" or "generated quantities {".
program: DATABLOCK LBRACE CHOLESKYFACTORCORR LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 366.
##
## top_var_type -> CHOLESKYFACTORCORR LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CHOLESKYFACTORCORR LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE CHOLESKYFACTORCORR LBRACK WHILE
##
## Ends in an error in state: 365.
##
## top_var_type -> CHOLESKYFACTORCORR LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CHOLESKYFACTORCORR LBRACK
##
program: DATABLOCK LBRACE CHOLESKYFACTORCORR WHILE
##
## Ends in an error in state: 364.
##
## top_var_type -> CHOLESKYFACTORCORR . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CHOLESKYFACTORCORR
##
Expected "[" expression "]" for size of cholesky_factor_corr.
program: DATABLOCK LBRACE CHOLESKYFACTORCOV LBRACK REALNUMERAL COMMA REALNUMERAL TILDE
##
## Ends in an error in state: 362.
##
## top_var_type -> CHOLESKYFACTORCOV LBRACK expr option(pair(COMMA,expr)) . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CHOLESKYFACTORCOV LBRACK expr option(pair(COMMA,expr))
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
## In state 360, spurious reduction of production pair(COMMA,expr) -> COMMA expr
## In state 361, spurious reduction of production option(pair(COMMA,expr)) -> pair(COMMA,expr)
##
program: DATABLOCK LBRACE CHOLESKYFACTORCOV LBRACK REALNUMERAL COMMA WHILE
##
## Ends in an error in state: 359.
##
## pair(COMMA,expr) -> COMMA . expr [ RBRACK ]
##
## The known suffix of the stack is as follows:
## COMMA
##
program: DATABLOCK LBRACE CHOLESKYFACTORCOV LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 358.
##
## top_var_type -> CHOLESKYFACTORCOV LBRACK expr . option(pair(COMMA,expr)) RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CHOLESKYFACTORCOV LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE CHOLESKYFACTORCOV LBRACK WHILE
##
## Ends in an error in state: 357.
##
## top_var_type -> CHOLESKYFACTORCOV LBRACK . expr option(pair(COMMA,expr)) RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CHOLESKYFACTORCOV LBRACK
##
program: DATABLOCK LBRACE CHOLESKYFACTORCOV WHILE
##
## Ends in an error in state: 356.
##
## top_var_type -> CHOLESKYFACTORCOV . LBRACK expr option(pair(COMMA,expr)) RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CHOLESKYFACTORCOV
##
Expected "[" expression "]" or "[" expression "," expression "]" for size of cholesky_factor_cov.
program: DATABLOCK LBRACE CORRMATRIX LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 354.
##
## top_var_type -> CORRMATRIX LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CORRMATRIX LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE CORRMATRIX LBRACK WHILE
##
## Ends in an error in state: 353.
##
## top_var_type -> CORRMATRIX LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CORRMATRIX LBRACK
##
program: DATABLOCK LBRACE CORRMATRIX WHILE
##
## Ends in an error in state: 352.
##
## top_var_type -> CORRMATRIX . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## CORRMATRIX
##
Expected "[" expression "]" for size of corr_matrix.
program: DATABLOCK LBRACE COVMATRIX LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 350.
##
## top_var_type -> COVMATRIX LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## COVMATRIX LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE COVMATRIX LBRACK WHILE
##
## Ends in an error in state: 349.
##
## top_var_type -> COVMATRIX LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## COVMATRIX LBRACK
##
program: DATABLOCK LBRACE COVMATRIX WHILE
##
## Ends in an error in state: 348.
##
## top_var_type -> COVMATRIX . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## COVMATRIX
##
Expected "[" expression "]" for size of cov_matrix.
program: DATABLOCK LBRACE INT LABRACK WHILE
##
## Ends in an error in state: 346.
##
## range_constraint -> LABRACK . range RABRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LABRACK
##
Expected "lower = " expression or "upper = " expression for integer bounds.
program: DATABLOCK LBRACE INT WHILE
##
## Ends in an error in state: 345.
##
## top_var_type -> INT . range_constraint [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## INT
##
Expected range constraint or identifier as part of top-level variable declaration.
program: DATABLOCK LBRACE MATRIX LABRACK OFFSET ASSIGN IDENTIFIER RABRACK WHILE
##
## Ends in an error in state: 339.
##
## top_var_type -> MATRIX type_constraint . LBRACK expr COMMA expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## MATRIX type_constraint
##
program: DATABLOCK LBRACE MATRIX LBRACK REALNUMERAL COMMA REALNUMERAL TILDE
##
## Ends in an error in state: 343.
##
## top_var_type -> MATRIX type_constraint LBRACK expr COMMA expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## MATRIX type_constraint LBRACK expr COMMA expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE MATRIX LBRACK REALNUMERAL COMMA WHILE
##
## Ends in an error in state: 342.
##
## top_var_type -> MATRIX type_constraint LBRACK expr COMMA . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## MATRIX type_constraint LBRACK expr COMMA
##
program: DATABLOCK LBRACE MATRIX LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 341.
##
## top_var_type -> MATRIX type_constraint LBRACK expr . COMMA expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## MATRIX type_constraint LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE MATRIX LBRACK WHILE
##
## Ends in an error in state: 340.
##
## top_var_type -> MATRIX type_constraint LBRACK . expr COMMA expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## MATRIX type_constraint LBRACK
##
program: DATABLOCK LBRACE MATRIX WHILE
##
## Ends in an error in state: 338.
##
## top_var_type -> MATRIX . type_constraint LBRACK expr COMMA expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## MATRIX
##
Expected "[" expression "," expression "]" for matrix sizes as part of top-level variable declaration.
program: DATABLOCK LBRACE ORDERED LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 336.
##
## top_var_type -> ORDERED LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## ORDERED LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE ORDERED LBRACK WHILE
##
## Ends in an error in state: 335.
##
## top_var_type -> ORDERED LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## ORDERED LBRACK
##
program: DATABLOCK LBRACE ORDERED WHILE
##
## Ends in an error in state: 334.
##
## top_var_type -> ORDERED . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## ORDERED
##
Expected "[" expression "]" for size of ordered.
program: DATABLOCK LBRACE POSITIVEORDERED LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 332.
##
## top_var_type -> POSITIVEORDERED LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## POSITIVEORDERED LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE POSITIVEORDERED LBRACK WHILE
##
## Ends in an error in state: 331.
##
## top_var_type -> POSITIVEORDERED LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## POSITIVEORDERED LBRACK
##
program: DATABLOCK LBRACE POSITIVEORDERED WHILE
##
## Ends in an error in state: 330.
##
## top_var_type -> POSITIVEORDERED . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## POSITIVEORDERED
##
Expected "[" expression "]" for size of positive_ordered.
program: DATABLOCK LBRACE RBRACE WHILE
##
## Ends in an error in state: 376.
##
## program -> option(function_block) option(data_block) . option(transformed_data_block) option(parameters_block) option(transformed_parameters_block) option(model_block) option(generated_quantities_block) EOF [ # ]
##
## The known suffix of the stack is as follows:
## option(function_block) option(data_block)
##
Expected "transformed data {" or "parameters {" or "transformed parameters {" or "model {" or "generated quantities {".
program: DATABLOCK LBRACE REAL IDENTIFIER LBRACK IDENTIFIER RBRACK WHILE
##
## Ends in an error in state: 370.
##
## top_var_decl_no_assign -> top_var_type decl_identifier option(dims) . SEMICOLON [ VECTOR UNITVECTOR SIMPLEX ROWVECTOR REAL RBRACE POSITIVEORDERED ORDERED MATRIX INT COVMATRIX CORRMATRIX CHOLESKYFACTORCOV CHOLESKYFACTORCORR ]
##
## The known suffix of the stack is as follows:
## top_var_type decl_identifier option(dims)
##
Expected ";".
program: DATABLOCK LBRACE REAL IDENTIFIER SEMICOLON WHILE
##
## Ends in an error in state: 372.
##
## list(top_var_decl_no_assign) -> top_var_decl_no_assign . list(top_var_decl_no_assign) [ RBRACE ]
##
## The known suffix of the stack is as follows:
## top_var_decl_no_assign
##
Only top-level variable declarations allowed in data and parameters blocks.
program: DATABLOCK LBRACE REAL IDENTIFIER WHILE
##
## Ends in an error in state: 369.
##
## top_var_decl_no_assign -> top_var_type decl_identifier . option(dims) SEMICOLON [ VECTOR UNITVECTOR SIMPLEX ROWVECTOR REAL RBRACE POSITIVEORDERED ORDERED MATRIX INT COVMATRIX CORRMATRIX CHOLESKYFACTORCOV CHOLESKYFACTORCORR ]
##
## The known suffix of the stack is as follows:
## top_var_type decl_identifier
##
";" is expected after a top-level variable declaration.
program: DATABLOCK LBRACE REAL WHILE
##
## Ends in an error in state: 328.
##
## top_var_type -> REAL . type_constraint [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## REAL
##
Identifier expected after type in top-level variable declaration.
program: DATABLOCK LBRACE ROWVECTOR LABRACK OFFSET ASSIGN IDENTIFIER RABRACK WHILE
##
## Ends in an error in state: 324.
##
## top_var_type -> ROWVECTOR type_constraint . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## ROWVECTOR type_constraint
##
Expected identifier as part of top-level variable declaration.
program: DATABLOCK LBRACE ROWVECTOR LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 326.
##
## top_var_type -> ROWVECTOR type_constraint LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## ROWVECTOR type_constraint LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE ROWVECTOR LBRACK WHILE
##
## Ends in an error in state: 325.
##
## top_var_type -> ROWVECTOR type_constraint LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## ROWVECTOR type_constraint LBRACK
##
program: DATABLOCK LBRACE ROWVECTOR WHILE
##
## Ends in an error in state: 323.
##
## top_var_type -> ROWVECTOR . type_constraint LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## ROWVECTOR
##
Expected "[" expression "]" for size declaration of row_vector.
program: DATABLOCK LBRACE SIMPLEX LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 321.
##
## top_var_type -> SIMPLEX LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## SIMPLEX LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE SIMPLEX LBRACK WHILE
##
## Ends in an error in state: 320.
##
## top_var_type -> SIMPLEX LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## SIMPLEX LBRACK
##
program: DATABLOCK LBRACE SIMPLEX WHILE
##
## Ends in an error in state: 319.
##
## top_var_type -> SIMPLEX . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## SIMPLEX
##
Expected "[" expression "]" for size declaration of simplex.
program: DATABLOCK LBRACE UNITVECTOR LBRACK REALNUMERAL TILDE
##
## Ends in an error in state: 317.
##
## top_var_type -> UNITVECTOR LBRACK expr . RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## UNITVECTOR LBRACK expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 110, spurious reduction of production comparison_expr -> additive_expr
## In state 84, spurious reduction of production equal_expr -> comparison_expr
## In state 69, spurious reduction of production and_expr -> equal_expr
## In state 105, spurious reduction of production or_expr -> and_expr
## In state 50, spurious reduction of production expr -> or_expr
##
program: DATABLOCK LBRACE UNITVECTOR LBRACK WHILE
##
## Ends in an error in state: 316.
##
## top_var_type -> UNITVECTOR LBRACK . expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## UNITVECTOR LBRACK
##
program: DATABLOCK LBRACE UNITVECTOR WHILE
##
## Ends in an error in state: 315.
##
## top_var_type -> UNITVECTOR . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## UNITVECTOR
##
Expected "[" expression "]" for size declaration of unit_vector.
program: DATABLOCK LBRACE VECTOR LABRACK LOWER ASSIGN REALNUMERAL COMMA UPPER ASSIGN WHILE
##
## Ends in an error in state: 304.
##
## range -> LOWER ASSIGN constr_expr COMMA UPPER ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## LOWER ASSIGN constr_expr COMMA UPPER ASSIGN
##
Expected expression (not containing binary logical operators) after "upper = ".
program: DATABLOCK LBRACE VECTOR LABRACK LOWER ASSIGN REALNUMERAL COMMA UPPER WHILE
##
## Ends in an error in state: 303.
##
## range -> LOWER ASSIGN constr_expr COMMA UPPER . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## LOWER ASSIGN constr_expr COMMA UPPER
##
Expected "=" expression (not containing binary logical operators) after "upper".
program: DATABLOCK LBRACE VECTOR LABRACK LOWER ASSIGN REALNUMERAL COMMA WHILE
##
## Ends in an error in state: 302.
##
## range -> LOWER ASSIGN constr_expr COMMA . UPPER ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## LOWER ASSIGN constr_expr COMMA
##
"upper =" expression (not containing binary logical operators) ">" expected after "<lower =" expression "," in top-level variable declaration.
program: DATABLOCK LBRACE VECTOR LABRACK LOWER ASSIGN WHILE
##
## Ends in an error in state: 300.
##
## range -> LOWER ASSIGN . constr_expr COMMA UPPER ASSIGN constr_expr [ RABRACK ]
## range -> LOWER ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## LOWER ASSIGN
##
An expression (not containing binary logical operators) is expected for type lower bound.
program: DATABLOCK LBRACE VECTOR LABRACK LOWER WHILE
##
## Ends in an error in state: 299.
##
## range -> LOWER . ASSIGN constr_expr COMMA UPPER ASSIGN constr_expr [ RABRACK ]
## range -> LOWER . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## LOWER
##
Expected "=" expression (not containing binary logical operators), after "lower".
program: DATABLOCK LBRACE VECTOR LABRACK MULTIPLIER ASSIGN REALNUMERAL COMMA OFFSET ASSIGN WHILE
##
## Ends in an error in state: 297.
##
## offset_mult -> MULTIPLIER ASSIGN constr_expr COMMA OFFSET ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## MULTIPLIER ASSIGN constr_expr COMMA OFFSET ASSIGN
##
Numerical expression expected after '=' in a multiplier expression.
program: DATABLOCK LBRACE VECTOR LABRACK MULTIPLIER ASSIGN REALNUMERAL COMMA OFFSET WHILE
##
## Ends in an error in state: 296.
##
## offset_mult -> MULTIPLIER ASSIGN constr_expr COMMA OFFSET . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## MULTIPLIER ASSIGN constr_expr COMMA OFFSET
##
Expected "offset = " expression (not containing binary logical operators).
program: DATABLOCK LBRACE VECTOR LABRACK MULTIPLIER ASSIGN REALNUMERAL COMMA WHILE
##
## Ends in an error in state: 295.
##
## offset_mult -> MULTIPLIER ASSIGN constr_expr COMMA . OFFSET ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## MULTIPLIER ASSIGN constr_expr COMMA
##
Expected '>' or offset expression after multiplier expression.
program: DATABLOCK LBRACE VECTOR LABRACK MULTIPLIER ASSIGN WHILE
##
## Ends in an error in state: 293.
##
## offset_mult -> MULTIPLIER ASSIGN . constr_expr COMMA OFFSET ASSIGN constr_expr [ RABRACK ]
## offset_mult -> MULTIPLIER ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## MULTIPLIER ASSIGN
##
Expected "multiplier = " expression (not containing binary logical operators).
program: DATABLOCK LBRACE VECTOR LABRACK MULTIPLIER WHILE
##
## Ends in an error in state: 292.
##
## offset_mult -> MULTIPLIER . ASSIGN constr_expr COMMA OFFSET ASSIGN constr_expr [ RABRACK ]
## offset_mult -> MULTIPLIER . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## MULTIPLIER
##
Expected "multiplier = " expression (not containing binary logical operators).
program: DATABLOCK LBRACE VECTOR LABRACK OFFSET ASSIGN IDENTIFIER COMMA MULTIPLIER ASSIGN IDENTIFIER COMMA
##
## Ends in an error in state: 308.
##
## type_constraint -> LABRACK offset_mult . RABRACK [ LBRACK IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LABRACK offset_mult
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 58, spurious reduction of production lhs -> identifier
## In state 46, spurious reduction of production common_expr -> lhs
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 284, spurious reduction of production constr_expr -> additive_expr
## In state 291, spurious reduction of production offset_mult -> OFFSET ASSIGN constr_expr COMMA MULTIPLIER ASSIGN constr_expr
##
Expected ">" after "multiplier = " expression.
program: DATABLOCK LBRACE VECTOR LABRACK OFFSET ASSIGN IDENTIFIER RABRACK WHILE
##
## Ends in an error in state: 310.
##
## top_var_type -> VECTOR type_constraint . LBRACK expr RBRACK [ IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## VECTOR type_constraint
##
Expected "[" expression "]" for vector size.
program: DATABLOCK LBRACE VECTOR LABRACK OFFSET ASSIGN REALNUMERAL COMMA MULTIPLIER ASSIGN WHILE
##
## Ends in an error in state: 290.
##
## offset_mult -> OFFSET ASSIGN constr_expr COMMA MULTIPLIER ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## OFFSET ASSIGN constr_expr COMMA MULTIPLIER ASSIGN
##
Expected expression (not containing binary logical operators) after "multiplier =".
program: DATABLOCK LBRACE VECTOR LABRACK OFFSET ASSIGN REALNUMERAL COMMA MULTIPLIER WHILE
##
## Ends in an error in state: 289.
##
## offset_mult -> OFFSET ASSIGN constr_expr COMMA MULTIPLIER . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## OFFSET ASSIGN constr_expr COMMA MULTIPLIER
##
Expected "=" expression (not containing binary logical operators) ">" after "multiplier".
program: DATABLOCK LBRACE VECTOR LABRACK OFFSET ASSIGN REALNUMERAL COMMA WHILE
##
## Ends in an error in state: 288.
##
## offset_mult -> OFFSET ASSIGN constr_expr COMMA . MULTIPLIER ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## OFFSET ASSIGN constr_expr COMMA
##
Expected ">" or ", multiplier = " expression (not containing binary logical operators) ">" after "offset = " expression.
program: DATABLOCK LBRACE VECTOR LABRACK OFFSET ASSIGN WHILE
##
## Ends in an error in state: 286.
##
## offset_mult -> OFFSET ASSIGN . constr_expr COMMA MULTIPLIER ASSIGN constr_expr [ RABRACK ]
## offset_mult -> OFFSET ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## OFFSET ASSIGN
##
Expected "offset = " expression (not containing binary logical operators).
program: DATABLOCK LBRACE VECTOR LABRACK OFFSET WHILE
##
## Ends in an error in state: 285.
##
## offset_mult -> OFFSET . ASSIGN constr_expr COMMA MULTIPLIER ASSIGN constr_expr [ RABRACK ]
## offset_mult -> OFFSET . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## OFFSET
##
Expected "offset = " expression (not containing binary logical operators).
program: DATABLOCK LBRACE VECTOR LABRACK UPPER ASSIGN IDENTIFIER COMMA LOWER ASSIGN IDENTIFIER COMMA
##
## Ends in an error in state: 306.
##
## range_constraint -> LABRACK range . RABRACK [ LBRACK IDENTIFIER ]
##
## The known suffix of the stack is as follows:
## LABRACK range
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 58, spurious reduction of production lhs -> identifier
## In state 46, spurious reduction of production common_expr -> lhs
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
## In state 284, spurious reduction of production constr_expr -> additive_expr
## In state 283, spurious reduction of production range -> UPPER ASSIGN constr_expr COMMA LOWER ASSIGN constr_expr
##
Expected ">" after "lower = " expression.
program: DATABLOCK LBRACE VECTOR LABRACK UPPER ASSIGN REALNUMERAL COMMA LOWER ASSIGN WHILE
##
## Ends in an error in state: 282.
##
## range -> UPPER ASSIGN constr_expr COMMA LOWER ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## UPPER ASSIGN constr_expr COMMA LOWER ASSIGN
##
Expected expression (not containing binary logical operators) after "lower = ".
program: DATABLOCK LBRACE VECTOR LABRACK UPPER ASSIGN REALNUMERAL COMMA LOWER WHILE
##
## Ends in an error in state: 281.
##
## range -> UPPER ASSIGN constr_expr COMMA LOWER . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## UPPER ASSIGN constr_expr COMMA LOWER
##
Expected "=" expression (not containing binary logical operators) after "lower".
program: DATABLOCK LBRACE VECTOR LABRACK UPPER ASSIGN REALNUMERAL COMMA WHILE
##
## Ends in an error in state: 280.
##
## range -> UPPER ASSIGN constr_expr COMMA . LOWER ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## UPPER ASSIGN constr_expr COMMA
##
"lower =" expression (not containing binary logical operators) ">" expected after "<upper =" expression "," in top-level variable declaration.
program: DATABLOCK LBRACE VECTOR LABRACK UPPER ASSIGN REALNUMERAL TILDE
##
## Ends in an error in state: 284.
##
## additive_expr -> additive_expr . PLUS multiplicative_expr [ RABRACK PLUS MINUS COMMA ]
## additive_expr -> additive_expr . MINUS multiplicative_expr [ RABRACK PLUS MINUS COMMA ]
## constr_expr -> additive_expr . [ RABRACK COMMA ]
##
## The known suffix of the stack is as follows:
## additive_expr
##
## WARNING: This example involves spurious reductions.
## This implies that, although the LR(1) items shown above provide an
## accurate view of the past (what has been recognized so far), they
## may provide an INCOMPLETE view of the future (what was expected next).
## In state 74, spurious reduction of production common_expr -> basic_expr
## In state 73, spurious reduction of production postfix_expr -> common_expr
## In state 43, spurious reduction of production exponentiation_expr -> postfix_expr
## In state 68, spurious reduction of production prefix_expr -> exponentiation_expr
## In state 49, spurious reduction of production leftdivide_expr -> prefix_expr
## In state 63, spurious reduction of production multiplicative_expr -> leftdivide_expr
## In state 52, spurious reduction of production additive_expr -> multiplicative_expr
##
">" or ", lower = expression>" (with expression not containing binary logical operators) expected after specifying upper bound for type.
program: DATABLOCK LBRACE VECTOR LABRACK UPPER ASSIGN WHILE
##
## Ends in an error in state: 278.
##
## range -> UPPER ASSIGN . constr_expr COMMA LOWER ASSIGN constr_expr [ RABRACK ]
## range -> UPPER ASSIGN . constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## UPPER ASSIGN
##
Expected expression (not containing binary logical operators) after "upper = ".
program: DATABLOCK LBRACE VECTOR LABRACK UPPER WHILE
##
## Ends in an error in state: 277.
##
## range -> UPPER . ASSIGN constr_expr COMMA LOWER ASSIGN constr_expr [ RABRACK ]
## range -> UPPER . ASSIGN constr_expr [ RABRACK ]
##
## The known suffix of the stack is as follows:
## UPPER
##
Expected "=" expression (not containing binary logical operators) after "upper".