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
3b06ebba
Commit
3b06ebba
authored
10 years ago
by
Jan Trávníček
Browse files
Options
Downloads
Patches
Plain Diff
remove references from VPA
parent
c15cab0a
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
alib2data/src/automaton/PDA/VisiblyPushdownNPDA.cpp
+3
-3
3 additions, 3 deletions
alib2data/src/automaton/PDA/VisiblyPushdownNPDA.cpp
alib2data/src/automaton/PDA/VisiblyPushdownNPDA.h
+3
-3
3 additions, 3 deletions
alib2data/src/automaton/PDA/VisiblyPushdownNPDA.h
with
6 additions
and
6 deletions
alib2data/src/automaton/PDA/VisiblyPushdownNPDA.cpp
+
3
−
3
View file @
3b06ebba
...
...
@@ -188,15 +188,15 @@ bool VisiblyPushdownNPDA::removeTransition(const State& from, const alphabet::Sy
return
localTransitions
[
key
].
erase
(
to
);
}
const
std
::
map
<
std
::
pair
<
State
,
alphabet
::
Symbol
>
,
std
::
set
<
std
::
pair
<
State
,
alphabet
::
Symbol
>
>
>
VisiblyPushdownNPDA
::
getCallTransitions
()
const
{
const
std
::
map
<
std
::
pair
<
State
,
alphabet
::
Symbol
>
,
std
::
set
<
std
::
pair
<
State
,
alphabet
::
Symbol
>
>
>
&
VisiblyPushdownNPDA
::
getCallTransitions
()
const
{
return
callTransitions
;
}
const
std
::
map
<
std
::
tuple
<
State
,
alphabet
::
Symbol
,
alphabet
::
Symbol
>
,
std
::
set
<
State
>
>
VisiblyPushdownNPDA
::
getReturnTransitions
()
const
{
const
std
::
map
<
std
::
tuple
<
State
,
alphabet
::
Symbol
,
alphabet
::
Symbol
>
,
std
::
set
<
State
>
>
&
VisiblyPushdownNPDA
::
getReturnTransitions
()
const
{
return
returnTransitions
;
}
const
std
::
map
<
std
::
pair
<
State
,
alphabet
::
Symbol
>
,
std
::
set
<
State
>
>
VisiblyPushdownNPDA
::
getLocalTransitions
()
const
{
const
std
::
map
<
std
::
pair
<
State
,
alphabet
::
Symbol
>
,
std
::
set
<
State
>
>
&
VisiblyPushdownNPDA
::
getLocalTransitions
()
const
{
return
localTransitions
;
}
...
...
This diff is collapsed.
Click to expand it.
alib2data/src/automaton/PDA/VisiblyPushdownNPDA.h
+
3
−
3
View file @
3b06ebba
...
...
@@ -98,11 +98,11 @@ public:
*/
bool removeTransition(const State& current, const alphabet::Symbol& input, const State& next);
const std::map<std::pair<State, alphabet::Symbol>, std::set<std::pair<State, alphabet::Symbol> > > getCallTransitions() const;
const std::map<std::pair<State, alphabet::Symbol>, std::set<std::pair<State, alphabet::Symbol> > >
&
getCallTransitions() const;
const std::map<std::tuple<State, alphabet::Symbol, alphabet::Symbol>, std::set<State> > getReturnTransitions() const;
const std::map<std::tuple<State, alphabet::Symbol, alphabet::Symbol>, std::set<State> >
&
getReturnTransitions() const;
const std::map<std::pair<State, alphabet::Symbol>, std::set<State> > getLocalTransitions() const;
const std::map<std::pair<State, alphabet::Symbol>, std::set<State> >
&
getLocalTransitions() const;
virtual bool operator<(const alib::ObjectBase& other) const;
virtual bool operator==(const alib::ObjectBase& other) const;
...
...
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