Skip to content
Snippets Groups Projects
Commit 4de06f32 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

use ObjectLabel to simplify vpa determinisation

parent 173fbcad
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
#include "label/Label.h" #include "label/Label.h"
#include "label/LabelSetLabel.h" #include "label/LabelSetLabel.h"
#include "label/LabelPairLabel.h" #include "label/LabelPairLabel.h"
#include "label/ObjectLabel.h"
#include "object/Object.h"
#include <std/set.hpp> #include <std/set.hpp>
#include <iostream> #include <iostream>
   
...@@ -27,20 +29,24 @@ std::set<std::pair<label::Label, label::Label>> VPADeterminizer::unpackFromDVPAS ...@@ -27,20 +29,24 @@ std::set<std::pair<label::Label, label::Label>> VPADeterminizer::unpackFromDVPAS
return res; return res;
} }
   
label::Label VPADeterminizer::packToDVPAStackSymbolLabel(std::pair<std::set<std::pair<label::Label, label::Label>>, label::Label>&& data) { label::Label VPADeterminizer::packToDVPAStackSymbolLabel(std::pair<std::set<std::pair<label::Label, label::Label>>, alphabet::Symbol>&& data) {
std::set<label::Label> res; std::set<label::Label> res;
for(auto&& subData : std::move(data.first)) { for(auto&& subData : std::move(data.first)) {
res.insert(label::Label(label::LabelPairLabel(std::move(subData)))); res.insert(label::Label(label::LabelPairLabel(std::move(subData))));
} }
return label::Label(label::LabelPairLabel(std::make_pair(label::Label(label::LabelSetLabel(std::move(res))), std::move(data.second)))); return label::Label(label::LabelPairLabel(std::make_pair(label::Label(label::LabelSetLabel(std::move(res))), label::Label(label::ObjectLabel(alib::Object(std::move(data.second.getData())))))));
} }
   
std::pair<std::set<std::pair<label::Label, label::Label>>, label::Label> VPADeterminizer::unpackFromDVPAStackSymbolLabel(const label::Label& data) { std::pair<std::set<std::pair<label::Label, label::Label>>, alphabet::Symbol> VPADeterminizer::unpackFromDVPAStackSymbolLabel(const label::Label& data) {
std::set<std::pair<label::Label, label::Label>> res; std::set<std::pair<label::Label, label::Label>> res;
for (const auto& subData : static_cast<const label::LabelSetLabel&>(static_cast<const label::LabelPairLabel&>(data.getData()).getData().first.getData()).getData()) { const label::Label& labelPairFirst = static_cast<const label::LabelPairLabel&>(data.getData()).getData().first;
for (const auto& subData : static_cast<const label::LabelSetLabel&>(labelPairFirst.getData()).getData()) {
res.insert(static_cast<const label::LabelPairLabel&>(subData.getData()).getData()); res.insert(static_cast<const label::LabelPairLabel&>(subData.getData()).getData());
} }
return std::make_pair(res, static_cast<const label::LabelPairLabel&>(data.getData()).getData().second);
const label::Label& labelPairSecond = static_cast<const label::LabelPairLabel&>(data.getData()).getData().second;
const alib::Object& object = static_cast<const label::ObjectLabel&>(labelPairSecond.getData()).getData();
return std::make_pair(res, alphabet::Symbol(static_cast<const alphabet::SymbolBase&>(object.getData())));
} }
   
void addRetTransition(const automaton::State& from, const alphabet::Symbol& input, const alphabet::Symbol& dvpdaSymbol, const automaton::State& to, automaton::VisiblyPushdownNPDA& deterministic) { void addRetTransition(const automaton::State& from, const alphabet::Symbol& input, const alphabet::Symbol& dvpdaSymbol, const automaton::State& to, automaton::VisiblyPushdownNPDA& deterministic) {
...@@ -76,13 +82,13 @@ void retInitial(const automaton::State& state, const alphabet::Symbol& pdaSymbol ...@@ -76,13 +82,13 @@ void retInitial(const automaton::State& state, const alphabet::Symbol& pdaSymbol
   
void ret(const automaton::State& state, const alphabet::Symbol& pdaSymbol, const alphabet::Symbol& input, const automaton::VisiblyPushdownNPDA& nondeterministic, automaton::VisiblyPushdownNPDA& deterministic) { void ret(const automaton::State& state, const alphabet::Symbol& pdaSymbol, const alphabet::Symbol& input, const automaton::VisiblyPushdownNPDA& nondeterministic, automaton::VisiblyPushdownNPDA& deterministic) {
std::set<std::pair<label::Label, label::Label>> S = VPADeterminizer::unpackFromDVPAStateLabel(state.getName()); std::set<std::pair<label::Label, label::Label>> S = VPADeterminizer::unpackFromDVPAStateLabel(state.getName());
std::pair<std::set<std::pair<label::Label, label::Label>>, label::Label> pdaSymbolUnpack = VPADeterminizer::unpackFromDVPAStackSymbolLabel(static_cast<const alphabet::LabeledSymbol&>(pdaSymbol.getData()).getLabel()); std::pair<std::set<std::pair<label::Label, label::Label>>, alphabet::Symbol> pdaSymbolUnpack = VPADeterminizer::unpackFromDVPAStackSymbolLabel(static_cast<const alphabet::LabeledSymbol&>(pdaSymbol.getData()).getLabel());
const std::set<std::pair<label::Label, label::Label>>& S1 = pdaSymbolUnpack.first; const std::set<std::pair<label::Label, label::Label>>& S1 = pdaSymbolUnpack.first;
   
std::set<std::pair<label::Label, label::Label>> update; std::set<std::pair<label::Label, label::Label>> update;
   
for(const auto& transition : nondeterministic.getCallTransitions()) { for(const auto& transition : nondeterministic.getCallTransitions()) {
if(pdaSymbolUnpack.second != static_cast<const alphabet::LabeledSymbol&>(std::get<1>(transition.first).getData()).getLabel()) continue; if(pdaSymbolUnpack.second != std::get<1>(transition.first)) continue;
   
const label::Label& q = std::get<0>(transition.first).getName(); const label::Label& q = std::get<0>(transition.first).getName();
for(const auto& to : transition.second) { for(const auto& to : transition.second) {
...@@ -167,9 +173,7 @@ void call(const automaton::State& state, const alphabet::Symbol& input, const au ...@@ -167,9 +173,7 @@ void call(const automaton::State& state, const alphabet::Symbol& input, const au
} }
} }
   
label::Label inputLabel = static_cast<const alphabet::LabeledSymbol&>(input.getData()).getLabel(); addCallTransition(state, input, automaton::State(VPADeterminizer::packToDVPAStateLabel(createIdentity(std::move(R1)))), alphabet::Symbol(alphabet::LabeledSymbol(VPADeterminizer::packToDVPAStackSymbolLabel(std::make_pair(std::move(S), input)))), deterministic);
addCallTransition(state, input, automaton::State(VPADeterminizer::packToDVPAStateLabel(createIdentity(std::move(R1)))), alphabet::Symbol(alphabet::LabeledSymbol(VPADeterminizer::packToDVPAStackSymbolLabel(std::make_pair(std::move(S), std::move(inputLabel))))), deterministic);
} }
   
void addLocalTransition(const automaton::State& from, const alphabet::Symbol& input, const automaton::State& to, automaton::VisiblyPushdownNPDA& deterministic) { void addLocalTransition(const automaton::State& from, const alphabet::Symbol& input, const automaton::State& to, automaton::VisiblyPushdownNPDA& deterministic) {
......
...@@ -14,9 +14,9 @@ public: ...@@ -14,9 +14,9 @@ public:
   
static std::set<std::pair<label::Label, label::Label>> unpackFromDVPAStateLabel(const label::Label& data); static std::set<std::pair<label::Label, label::Label>> unpackFromDVPAStateLabel(const label::Label& data);
   
static label::Label packToDVPAStackSymbolLabel(std::pair<std::set<std::pair<label::Label, label::Label>>, label::Label>&& data); static label::Label packToDVPAStackSymbolLabel(std::pair<std::set<std::pair<label::Label, label::Label>>, alphabet::Symbol>&& data);
   
static std::pair<std::set<std::pair<label::Label, label::Label>>, label::Label> unpackFromDVPAStackSymbolLabel(const label::Label& data); static std::pair<std::set<std::pair<label::Label, label::Label>>, alphabet::Symbol> unpackFromDVPAStackSymbolLabel(const label::Label& data);
/** /**
* Runs determinization algorithm on nondeterministic vpa given in constructor. * Runs determinization algorithm on nondeterministic vpa given in constructor.
* *
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include "IntegerLabel.h" #include "IntegerLabel.h"
#include "StringLabel.h" #include "StringLabel.h"
#include "CharacterLabel.h" #include "CharacterLabel.h"
#include "ObjectLabel.h"
#include "LabelSetLabel.h" #include "LabelSetLabel.h"
#include "LabelPairLabel.h" #include "LabelPairLabel.h"
   
...@@ -45,8 +46,9 @@ void LabelToStringComposer::Visit(void* userData, const IntegerLabel& label) { ...@@ -45,8 +46,9 @@ void LabelToStringComposer::Visit(void* userData, const IntegerLabel& label) {
out << label.getData(); out << label.getData();
} }
   
void LabelToStringComposer::Visit(void*, const ObjectLabel&) { void LabelToStringComposer::Visit(void* userData, const ObjectLabel& label) {
throw exception::AlibException("Unsupported type in conversion to string (ObjectLabel)"); std::stringstream &out = *((std::stringstream*) userData);
out << (std::string) label;
} }
   
void LabelToStringComposer::Visit(void* userData, const LabelSetLabel& label) { void LabelToStringComposer::Visit(void* userData, const LabelSetLabel& label) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment