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
|
Terminals unused in grammar
T_list
T_attr
Grammar
0 $accept: graph $end
1 graph: hdr body
2 | error
3 | /* empty */
4 body: '{' optstmtlist '}'
5 hdr: optstrict graphtype optgraphname
6 optgraphname: atom
7 | /* empty */
8 optstrict: T_strict
9 | /* empty */
10 graphtype: T_graph
11 | T_digraph
12 optstmtlist: stmtlist
13 | /* empty */
14 stmtlist: stmtlist stmt
15 | stmt
16 optsemi: ';'
17 | /* empty */
18 stmt: attrstmt optsemi
19 | compound optsemi
20 compound: simple rcompound optattr
21 simple: nodelist
22 | subgraph
23 $@1: /* empty */
24 rcompound: T_edgeop $@1 simple rcompound
25 | /* empty */
26 nodelist: node
27 | nodelist ',' node
28 node: atom
29 | atom ':' atom
30 | atom ':' atom ':' atom
31 attrstmt: attrtype optmacroname attrlist
32 | graphattrdefs
33 attrtype: T_graph
34 | T_node
35 | T_edge
36 optmacroname: atom '='
37 | /* empty */
38 optattr: attrlist
39 | /* empty */
40 attrlist: optattr '[' optattrdefs ']'
41 optattrdefs: optattrdefs attrdefs
42 | /* empty */
43 attrdefs: attritem optseparator
44 attritem: attrassignment
45 | attrmacro
46 attrassignment: atom '=' atom
47 attrmacro: '@' atom
48 graphattrdefs: attrassignment
49 $@2: /* empty */
50 subgraph: optsubghdr $@2 body
51 optsubghdr: T_subgraph atom
52 | T_subgraph
53 | /* empty */
54 optseparator: ';'
55 | ','
56 | /* empty */
57 atom: T_atom
58 | qatom
59 qatom: T_qatom
60 | qatom '+' T_qatom
Terminals, with rules where they appear
$end (0) 0
'+' (43) 60
',' (44) 27 55
':' (58) 29 30
';' (59) 16 54
'=' (61) 36 46
'@' (64) 47
'[' (91) 40
']' (93) 40
'{' (123) 4
'}' (125) 4
error (256) 2
T_graph (258) 10 33
T_node (259) 34
T_edge (260) 35
T_digraph (261) 11
T_subgraph (262) 51 52
T_strict (263) 8
T_edgeop (264) 24
T_list (265)
T_attr (266)
T_atom (267) 57
T_qatom (268) 59 60
Nonterminals, with rules where they appear
$accept (24)
on left: 0
graph (25)
on left: 1 2 3, on right: 0
body (26)
on left: 4, on right: 1 50
hdr (27)
on left: 5, on right: 1
optgraphname (28)
on left: 6 7, on right: 5
optstrict (29)
on left: 8 9, on right: 5
graphtype (30)
on left: 10 11, on right: 5
optstmtlist (31)
on left: 12 13, on right: 4
stmtlist (32)
on left: 14 15, on right: 12 14
optsemi (33)
on left: 16 17, on right: 18 19
stmt (34)
on left: 18 19, on right: 14 15
compound (35)
on left: 20, on right: 19
simple (36)
on left: 21 22, on right: 20 24
rcompound (37)
on left: 24 25, on right: 20 24
$@1 (38)
on left: 23, on right: 24
nodelist (39)
on left: 26 27, on right: 21 27
node (40)
on left: 28 29 30, on right: 26 27
attrstmt (41)
on left: 31 32, on right: 18
attrtype (42)
on left: 33 34 35, on right: 31
optmacroname (43)
on left: 36 37, on right: 31
optattr (44)
on left: 38 39, on right: 20 40
attrlist (45)
on left: 40, on right: 31 38
optattrdefs (46)
on left: 41 42, on right: 40 41
attrdefs (47)
on left: 43, on right: 41
attritem (48)
on left: 44 45, on right: 43
attrassignment (49)
on left: 46, on right: 44 48
attrmacro (50)
on left: 47, on right: 45
graphattrdefs (51)
on left: 48, on right: 32
subgraph (52)
on left: 50, on right: 22
$@2 (53)
on left: 49, on right: 50
optsubghdr (54)
on left: 51 52 53, on right: 50
optseparator (55)
on left: 54 55 56, on right: 43
atom (56)
on left: 57 58, on right: 6 28 29 30 36 46 47 51
qatom (57)
on left: 59 60, on right: 58 60
state 0
0 $accept: . graph $end
error shift, and go to state 1
T_strict shift, and go to state 2
$end reduce using rule 3 (graph)
T_graph reduce using rule 9 (optstrict)
T_digraph reduce using rule 9 (optstrict)
graph go to state 3
hdr go to state 4
optstrict go to state 5
state 1
2 graph: error .
$default reduce using rule 2 (graph)
state 2
8 optstrict: T_strict .
$default reduce using rule 8 (optstrict)
state 3
0 $accept: graph . $end
$end shift, and go to state 6
state 4
1 graph: hdr . body
'{' shift, and go to state 7
body go to state 8
state 5
5 hdr: optstrict . graphtype optgraphname
T_graph shift, and go to state 9
T_digraph shift, and go to state 10
graphtype go to state 11
state 6
0 $accept: graph $end .
$default accept
state 7
4 body: '{' . optstmtlist '}'
T_graph shift, and go to state 12
T_node shift, and go to state 13
T_edge shift, and go to state 14
T_subgraph shift, and go to state 15
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
'{' reduce using rule 53 (optsubghdr)
$default reduce using rule 13 (optstmtlist)
optstmtlist go to state 18
stmtlist go to state 19
stmt go to state 20
compound go to state 21
simple go to state 22
nodelist go to state 23
node go to state 24
attrstmt go to state 25
attrtype go to state 26
attrassignment go to state 27
graphattrdefs go to state 28
subgraph go to state 29
optsubghdr go to state 30
atom go to state 31
qatom go to state 32
state 8
1 graph: hdr body .
$default reduce using rule 1 (graph)
state 9
10 graphtype: T_graph .
$default reduce using rule 10 (graphtype)
state 10
11 graphtype: T_digraph .
$default reduce using rule 11 (graphtype)
state 11
5 hdr: optstrict graphtype . optgraphname
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
$default reduce using rule 7 (optgraphname)
optgraphname go to state 33
atom go to state 34
qatom go to state 32
state 12
33 attrtype: T_graph .
$default reduce using rule 33 (attrtype)
state 13
34 attrtype: T_node .
$default reduce using rule 34 (attrtype)
state 14
35 attrtype: T_edge .
$default reduce using rule 35 (attrtype)
state 15
51 optsubghdr: T_subgraph . atom
52 | T_subgraph .
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
$default reduce using rule 52 (optsubghdr)
atom go to state 35
qatom go to state 32
state 16
57 atom: T_atom .
$default reduce using rule 57 (atom)
state 17
59 qatom: T_qatom .
$default reduce using rule 59 (qatom)
state 18
4 body: '{' optstmtlist . '}'
'}' shift, and go to state 36
state 19
12 optstmtlist: stmtlist .
14 stmtlist: stmtlist . stmt
T_graph shift, and go to state 12
T_node shift, and go to state 13
T_edge shift, and go to state 14
T_subgraph shift, and go to state 15
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
'{' reduce using rule 53 (optsubghdr)
$default reduce using rule 12 (optstmtlist)
stmt go to state 37
compound go to state 21
simple go to state 22
nodelist go to state 23
node go to state 24
attrstmt go to state 25
attrtype go to state 26
attrassignment go to state 27
graphattrdefs go to state 28
subgraph go to state 29
optsubghdr go to state 30
atom go to state 31
qatom go to state 32
state 20
15 stmtlist: stmt .
$default reduce using rule 15 (stmtlist)
state 21
19 stmt: compound . optsemi
';' shift, and go to state 38
$default reduce using rule 17 (optsemi)
optsemi go to state 39
state 22
20 compound: simple . rcompound optattr
T_edgeop shift, and go to state 40
$default reduce using rule 25 (rcompound)
rcompound go to state 41
state 23
21 simple: nodelist .
27 nodelist: nodelist . ',' node
',' shift, and go to state 42
$default reduce using rule 21 (simple)
state 24
26 nodelist: node .
$default reduce using rule 26 (nodelist)
state 25
18 stmt: attrstmt . optsemi
';' shift, and go to state 38
$default reduce using rule 17 (optsemi)
optsemi go to state 43
state 26
31 attrstmt: attrtype . optmacroname attrlist
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
$default reduce using rule 37 (optmacroname)
optmacroname go to state 44
atom go to state 45
qatom go to state 32
state 27
48 graphattrdefs: attrassignment .
$default reduce using rule 48 (graphattrdefs)
state 28
32 attrstmt: graphattrdefs .
$default reduce using rule 32 (attrstmt)
state 29
22 simple: subgraph .
$default reduce using rule 22 (simple)
state 30
50 subgraph: optsubghdr . $@2 body
$default reduce using rule 49 ($@2)
$@2 go to state 46
state 31
28 node: atom .
29 | atom . ':' atom
30 | atom . ':' atom ':' atom
46 attrassignment: atom . '=' atom
':' shift, and go to state 47
'=' shift, and go to state 48
$default reduce using rule 28 (node)
state 32
58 atom: qatom .
60 qatom: qatom . '+' T_qatom
'+' shift, and go to state 49
$default reduce using rule 58 (atom)
state 33
5 hdr: optstrict graphtype optgraphname .
$default reduce using rule 5 (hdr)
state 34
6 optgraphname: atom .
$default reduce using rule 6 (optgraphname)
state 35
51 optsubghdr: T_subgraph atom .
$default reduce using rule 51 (optsubghdr)
state 36
4 body: '{' optstmtlist '}' .
$default reduce using rule 4 (body)
state 37
14 stmtlist: stmtlist stmt .
$default reduce using rule 14 (stmtlist)
state 38
16 optsemi: ';' .
$default reduce using rule 16 (optsemi)
state 39
19 stmt: compound optsemi .
$default reduce using rule 19 (stmt)
state 40
24 rcompound: T_edgeop . $@1 simple rcompound
$default reduce using rule 23 ($@1)
$@1 go to state 50
state 41
20 compound: simple rcompound . optattr
$default reduce using rule 39 (optattr)
optattr go to state 51
attrlist go to state 52
state 42
27 nodelist: nodelist ',' . node
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
node go to state 53
atom go to state 54
qatom go to state 32
state 43
18 stmt: attrstmt optsemi .
$default reduce using rule 18 (stmt)
state 44
31 attrstmt: attrtype optmacroname . attrlist
$default reduce using rule 39 (optattr)
optattr go to state 55
attrlist go to state 56
state 45
36 optmacroname: atom . '='
'=' shift, and go to state 57
state 46
50 subgraph: optsubghdr $@2 . body
'{' shift, and go to state 7
body go to state 58
state 47
29 node: atom ':' . atom
30 | atom ':' . atom ':' atom
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
atom go to state 59
qatom go to state 32
state 48
46 attrassignment: atom '=' . atom
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
atom go to state 60
qatom go to state 32
state 49
60 qatom: qatom '+' . T_qatom
T_qatom shift, and go to state 61
state 50
24 rcompound: T_edgeop $@1 . simple rcompound
T_subgraph shift, and go to state 15
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
$default reduce using rule 53 (optsubghdr)
simple go to state 62
nodelist go to state 23
node go to state 24
subgraph go to state 29
optsubghdr go to state 30
atom go to state 54
qatom go to state 32
state 51
20 compound: simple rcompound optattr .
40 attrlist: optattr . '[' optattrdefs ']'
'[' shift, and go to state 63
$default reduce using rule 20 (compound)
state 52
38 optattr: attrlist .
$default reduce using rule 38 (optattr)
state 53
27 nodelist: nodelist ',' node .
$default reduce using rule 27 (nodelist)
state 54
28 node: atom .
29 | atom . ':' atom
30 | atom . ':' atom ':' atom
':' shift, and go to state 47
$default reduce using rule 28 (node)
state 55
40 attrlist: optattr . '[' optattrdefs ']'
'[' shift, and go to state 63
state 56
31 attrstmt: attrtype optmacroname attrlist .
38 optattr: attrlist .
'[' reduce using rule 38 (optattr)
$default reduce using rule 31 (attrstmt)
state 57
36 optmacroname: atom '=' .
$default reduce using rule 36 (optmacroname)
state 58
50 subgraph: optsubghdr $@2 body .
$default reduce using rule 50 (subgraph)
state 59
29 node: atom ':' atom .
30 | atom ':' atom . ':' atom
':' shift, and go to state 64
$default reduce using rule 29 (node)
state 60
46 attrassignment: atom '=' atom .
$default reduce using rule 46 (attrassignment)
state 61
60 qatom: qatom '+' T_qatom .
$default reduce using rule 60 (qatom)
state 62
24 rcompound: T_edgeop $@1 simple . rcompound
T_edgeop shift, and go to state 40
$default reduce using rule 25 (rcompound)
rcompound go to state 65
state 63
40 attrlist: optattr '[' . optattrdefs ']'
$default reduce using rule 42 (optattrdefs)
optattrdefs go to state 66
state 64
30 node: atom ':' atom ':' . atom
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
atom go to state 67
qatom go to state 32
state 65
24 rcompound: T_edgeop $@1 simple rcompound .
$default reduce using rule 24 (rcompound)
state 66
40 attrlist: optattr '[' optattrdefs . ']'
41 optattrdefs: optattrdefs . attrdefs
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
']' shift, and go to state 68
'@' shift, and go to state 69
attrdefs go to state 70
attritem go to state 71
attrassignment go to state 72
attrmacro go to state 73
atom go to state 74
qatom go to state 32
state 67
30 node: atom ':' atom ':' atom .
$default reduce using rule 30 (node)
state 68
40 attrlist: optattr '[' optattrdefs ']' .
$default reduce using rule 40 (attrlist)
state 69
47 attrmacro: '@' . atom
T_atom shift, and go to state 16
T_qatom shift, and go to state 17
atom go to state 75
qatom go to state 32
state 70
41 optattrdefs: optattrdefs attrdefs .
$default reduce using rule 41 (optattrdefs)
state 71
43 attrdefs: attritem . optseparator
';' shift, and go to state 76
',' shift, and go to state 77
$default reduce using rule 56 (optseparator)
optseparator go to state 78
state 72
44 attritem: attrassignment .
$default reduce using rule 44 (attritem)
state 73
45 attritem: attrmacro .
$default reduce using rule 45 (attritem)
state 74
46 attrassignment: atom . '=' atom
'=' shift, and go to state 48
state 75
47 attrmacro: '@' atom .
$default reduce using rule 47 (attrmacro)
state 76
54 optseparator: ';' .
$default reduce using rule 54 (optseparator)
state 77
55 optseparator: ',' .
$default reduce using rule 55 (optseparator)
state 78
43 attrdefs: attritem optseparator .
$default reduce using rule 43 (attrdefs)
|