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
8652b44d
Commit
8652b44d
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
implemented generating unique end of input symbol for CFG
parent
b51e1850
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/LRParser.cpp
+26
-0
26 additions, 0 deletions
alib2algo/src/grammar/parsing/LRParser.cpp
alib2algo/src/grammar/parsing/LRParser.h
+27
-0
27 additions, 0 deletions
alib2algo/src/grammar/parsing/LRParser.h
with
53 additions
and
0 deletions
alib2algo/src/grammar/parsing/LRParser.cpp
0 → 100644
+
26
−
0
View file @
8652b44d
/*
*
LRParser
.
cpp
*
*
Created
on
:
30.
4.
2016
*
Author
:
Martin
Kocicka
*/
#include
"LRParser.h"
#include
<stack>
namespace
grammar
{
namespace
parsing
{
alphabet
::
Symbol
LRParser
::
getEndOfInputSymbol
(
grammar
::
CFG
originalGrammar
)
{
alphabet
::
Symbol
endOfInputSymbol
=
alphabet
::
symbolFrom
(
"$"
);
while
(
originalGrammar
.
getTerminalAlphabet
(
)
.
find
(
endOfInputSymbol
)
!=
originalGrammar
.
getTerminalAlphabet
(
)
.
end
(
)
)
{
endOfInputSymbol
.
inc
(
);
}
return
endOfInputSymbol
;
}
}
/* namespace parsing */
}
/* namespace grammar */
This diff is collapsed.
Click to expand it.
alib2algo/src/grammar/parsing/LRParser.h
0 → 100644
+
27
−
0
View file @
8652b44d
/*
* LRParser.h
*
* Created on: 30. 4. 2015
* Author: Martin Kocicka
*/
#ifndef LR_PARSER_H_
#define LR_PARSER_H_
#include <alphabet/Symbol.h>
#include <grammar/ContextFree/CFG.h>
namespace grammar {
namespace parsing {
class LRParser {
public:
static alphabet::Symbol getEndOfInputSymbol ( grammar::CFG originalGrammar );
};
} /* namespace parsing */
} /* namespace grammar */
#endif /* LR_PARSER_H_ */
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