Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Algorithms Library Toolkit Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
Algorithms Library Toolkit Core
Commits
34930217
Commit
34930217
authored
8 years ago
by
Martin Kočička
Committed by
Jan Trávníček
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
added SLR(1) goto table generator
parent
cced0790
No related branches found
No related tags found
1 merge request
!18
Bp kocicma3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
alib2algo/src/grammar/parsing/SLR1ParseTable.cpp
+17
-0
17 additions, 0 deletions
alib2algo/src/grammar/parsing/SLR1ParseTable.cpp
alib2algo/src/grammar/parsing/SLR1ParseTable.h
+2
-0
2 additions, 0 deletions
alib2algo/src/grammar/parsing/SLR1ParseTable.h
with
19 additions
and
0 deletions
alib2algo/src/grammar/parsing/SLR1ParseTable.cpp
+
17
−
0
View file @
34930217
...
...
@@ -67,6 +67,23 @@ LRActionTable SLR1ParseTable::getActionTable ( grammar::CFG originalGrammar ) {
return
actionTable
;
}
LRGotoTable
SLR1ParseTable
::
getGotoTable
(
grammar
::
CFG
originalGrammar
)
{
LRGotoTable
gotoTable
;
grammar
::
CFG
augmentedGrammar
=
LRParser
::
getAugmentedGrammar
(
originalGrammar
);
automaton
::
DFA
parsingAutomaton
=
LR0Parser
::
getAutomaton
(
originalGrammar
);
for
(
const
automaton
::
State
&
state
:
parsingAutomaton
.
getStates
(
)
)
{
std
::
map
<
std
::
pair
<
automaton
::
State
,
alphabet
::
Symbol
>
,
automaton
::
State
>
transitionsFromCurrentState
=
parsingAutomaton
.
getTransitionsFromState
(
state
);
for
(
const
alphabet
::
Symbol
&
nonterminal
:
augmentedGrammar
.
getNonterminalAlphabet
(
)
)
{
std
::
map
<
std
::
pair
<
automaton
::
State
,
alphabet
::
Symbol
>
,
automaton
::
State
>::
iterator
transitionIterator
=
transitionsFromCurrentState
.
find
(
{
state
,
nonterminal
}
);
if
(
transitionIterator
!=
transitionsFromCurrentState
.
end
(
)
)
{
gotoTable
.
insert
(
{
{
state
,
nonterminal
},
transitionIterator
->
second
}
);
}
}
}
return
gotoTable
;
}
}
/* namespace parsing */
}
/* namespace grammar */
This diff is collapsed.
Click to expand it.
alib2algo/src/grammar/parsing/SLR1ParseTable.h
+
2
−
0
View file @
34930217
...
...
@@ -22,6 +22,8 @@ class SLR1ParseTable {
public:
static LRActionTable getActionTable ( grammar::CFG originalGrammar );
static LRGotoTable getGotoTable ( grammar::CFG originalGrammar );
};
} /* namespace parsing */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment