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

normalize experimental data types

parent f0b60296
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,10 @@ public:
}
 
alib::ObjectBase * inc ( ) && override;
virtual AdjacencyListDirectedGraph * normalize ( ) && {
return this;
}
};
 
} // namespace graph
......
......@@ -93,6 +93,10 @@ public:
}
 
alib::ObjectBase * inc ( ) && override;
virtual AdjacencyMatrixDirectedGraph * normalize ( ) && {
return this;
}
};
 
} // namespace graph
......
......@@ -87,6 +87,10 @@ public:
}
 
alib::ObjectBase * inc ( ) && override;
virtual AdjacencyListUndirectedGraph * normalize ( ) && {
return this;
}
};
 
} // namespace graph
......
......@@ -90,6 +90,10 @@ public:
}
 
alib::ObjectBase * inc ( ) && override;
virtual AdjacencyMatrixUndirectedGraph * normalize ( ) && {
return this;
}
};
 
} // namespace graph
......
......@@ -108,6 +108,10 @@ public:
void compose ( std::deque < sax::Token > & out ) const;
 
virtual alib::ObjectBase * inc ( ) &&;
virtual SuffixTrieTerminatingSymbol * normalize ( ) && {
return this;
}
};
 
} /* namespace tree */
......
......@@ -77,6 +77,10 @@ public:
void compose ( std::deque < sax::Token > & out ) const;
 
virtual LabelBase * inc ( ) &&;
virtual LR0ItemsLabel * normalize ( ) && {
return this;
}
};
 
} /* namespace label */
......
......@@ -91,6 +91,10 @@ public:
void compose ( std::deque < sax::Token > & out ) const;
 
virtual alib::ObjectBase * inc ( ) &&;
virtual LinearStringTerminatingSymbol * normalize ( ) && {
return this;
}
};
 
} /* namespace string */
......
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