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

simplify packing and unpacking labels

parent fd7dce66
No related branches found
No related tags found
No related merge requests found
...@@ -23,30 +23,27 @@ label::Label VPADeterminizer::packToDVPAStateLabel(std::set<std::pair<label::Lab ...@@ -23,30 +23,27 @@ label::Label VPADeterminizer::packToDVPAStateLabel(std::set<std::pair<label::Lab
   
std::set<std::pair<label::Label, label::Label>> VPADeterminizer::unpackFromDVPAStateLabel(const label::Label& data) { std::set<std::pair<label::Label, label::Label>> VPADeterminizer::unpackFromDVPAStateLabel(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&>(data.getData()).getData()) { const std::set<label::Label>& labelSet = static_cast<const label::LabelSetLabel&>(data.getData()).getData();
res.insert(static_cast<const label::LabelPairLabel&>(subData.getData()).getData()); for (const auto& subData : labelSet) {
const std::pair<label::Label, label::Label>& labelPair = static_cast<const label::LabelPairLabel&>(subData.getData()).getData();
res.insert(labelPair);
} }
return res; return res;
} }
   
label::Label VPADeterminizer::packToDVPAStackSymbolLabel(std::pair<std::set<std::pair<label::Label, label::Label>>, alphabet::Symbol>&& data) { label::Label VPADeterminizer::packToDVPAStackSymbolLabel(std::pair<std::set<std::pair<label::Label, label::Label>>, alphabet::Symbol>&& data) {
std::set<label::Label> res; label::Label res1 = packToDVPAStateLabel(std::move(data.first));
for(auto&& subData : std::move(data.first)) { label::Label res2 = label::Label(label::ObjectLabel(alib::Object(std::move(data.second.getData()))));
res.insert(label::Label(label::LabelPairLabel(std::move(subData)))); return label::Label(label::LabelPairLabel(std::make_pair(std::move(res1), std::move(res2))));
}
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>>, alphabet::Symbol> 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;
const label::Label& labelPairFirst = static_cast<const label::LabelPairLabel&>(data.getData()).getData().first; 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()) { std::set<std::pair<label::Label, label::Label>> res = unpackFromDVPAStateLabel(labelPairFirst);
res.insert(static_cast<const label::LabelPairLabel&>(subData.getData()).getData());
}
   
const label::Label& labelPairSecond = 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(); 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()))); return std::make_pair(std::move(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) {
......
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