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

update includes in algo_experimental

parent 7210180a
No related branches found
No related tags found
No related merge requests found
Showing
with 47 additions and 47 deletions
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
#ifndef RANDOM_AUTOMATON_FACTORY_2_H_ #ifndef RANDOM_AUTOMATON_FACTORY_2_H_
#define RANDOM_AUTOMATON_FACTORY_2_H_ #define RANDOM_AUTOMATON_FACTORY_2_H_
   
#include <deque> #include <alib/deque>
#include <set> #include <alib/set>
#include <algorithm> #include <alib/algorithm>
#include <random> #include <alib/random>
   
#include <exception/CommonException.h> #include <exception/CommonException.h>
   
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
   
#include <grammar/GrammarFeatures.h> #include <grammar/GrammarFeatures.h>
#include <alphabet/Symbol.h> #include <alphabet/Symbol.h>
#include <set> #include <alib/set>
#include <map> #include <alib/map>
   
namespace grammar { namespace grammar {
   
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
   
#include <grammar/ContextFree/CFG.h> #include <grammar/ContextFree/CFG.h>
#include <exception/CommonException.h> #include <exception/CommonException.h>
#include <algorithm> #include <alib/algorithm>
   
#include <grammar/properties/RecursiveNonterminal.h> #include <grammar/properties/RecursiveNonterminal.h>
#include <registration/AlgoRegistration.hpp> #include <registration/AlgoRegistration.hpp>
......
...@@ -10,10 +10,10 @@ ...@@ -10,10 +10,10 @@
   
#include <alphabet/Symbol.h> #include <alphabet/Symbol.h>
#include <string/Epsilon.h> #include <string/Epsilon.h>
#include <vector> #include <alib/vector>
#include <variant> #include <alib/variant>
#include <set> #include <alib/set>
#include <map> #include <alib/map>
   
namespace grammar { namespace grammar {
   
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
   
#include <grammar/GrammarFeatures.h> #include <grammar/GrammarFeatures.h>
#include <alphabet/Symbol.h> #include <alphabet/Symbol.h>
#include <set> #include <alib/set>
   
namespace grammar { namespace grammar {
   
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#ifndef FIRST_H_ #ifndef FIRST_H_
#define FIRST_H_ #define FIRST_H_
   
#include <vector> #include <alib/vector>
#include <set> #include <alib/set>
#include <variant> #include <alib/variant>
   
#include <string/Epsilon.h> #include <string/Epsilon.h>
#include <grammar/Grammar.h> #include <grammar/Grammar.h>
......
...@@ -8,11 +8,11 @@ ...@@ -8,11 +8,11 @@
#ifndef FOLLOW_H_ #ifndef FOLLOW_H_
#define FOLLOW_H_ #define FOLLOW_H_
   
#include <vector> #include <alib/vector>
#include <set> #include <alib/set>
#include <variant> #include <alib/variant>
#include <algorithm> #include <alib/algorithm>
#include <iterator> #include <alib/iterator>
   
#include <exception/CommonException.h> #include <exception/CommonException.h>
   
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
   
#include <grammar/GrammarFeatures.h> #include <grammar/GrammarFeatures.h>
#include <alphabet/Symbol.h> #include <alphabet/Symbol.h>
#include <vector> #include <alib/vector>
   
namespace grammar { namespace grammar {
   
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
   
#include <grammar/GrammarFeatures.h> #include <grammar/GrammarFeatures.h>
#include <alphabet/Symbol.h> #include <alphabet/Symbol.h>
#include <vector> #include <alib/vector>
#include <set> #include <alib/set>
   
namespace grammar { namespace grammar {
   
......
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
#ifndef LL_1_PARSE_TABLE_H_ #ifndef LL_1_PARSE_TABLE_H_
#define LL_1_PARSE_TABLE_H_ #define LL_1_PARSE_TABLE_H_
   
#include <vector> #include <alib/vector>
#include <variant> #include <alib/variant>
#include <set> #include <alib/set>
#include <map> #include <alib/map>
   
#include <grammar/Grammar.h> #include <grammar/Grammar.h>
#include <string/Epsilon.h> #include <string/Epsilon.h>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include <grammar/ContextFree/CFG.h> #include <grammar/ContextFree/CFG.h>
#include <grammar/parsing/LRParserTypes.h> #include <grammar/parsing/LRParserTypes.h>
   
#include <vector> #include <alib/vector>
   
namespace grammar { namespace grammar {
   
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
   
#include <grammar/GrammarFeatures.h> #include <grammar/GrammarFeatures.h>
#include <alphabet/Symbol.h> #include <alphabet/Symbol.h>
#include <vector> #include <alib/vector>
   
namespace grammar { namespace grammar {
   
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* Author: Jan Broz * Author: Jan Broz
*/ */
   
#include <unordered_map> #include <alib/unordered_map>
   
#include <graph/common/Node.h> #include <graph/common/Node.h>
   
......
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
   
#include "HopcroftTarjan.h" #include "HopcroftTarjan.h"
   
#include <list> #include <alib/list>
#include <stack> #include <stack>
#include <algorithm> #include <alib/algorithm>
   
#include <exception/CommonException.h> #include <exception/CommonException.h>
   
......
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
   
#include "RandomGraphFactory.h" #include "RandomGraphFactory.h"
   
#include <random> #include <alib/random>
#include <algorithm> #include <alib/algorithm>
#include <unordered_map> #include <alib/unordered_map>
#include <iostream> #include <alib/iostream>
#include <sstream> #include <sstream>
   
#include "../datastructs/Array.h" #include "../datastructs/Array.h"
......
...@@ -8,11 +8,11 @@ ...@@ -8,11 +8,11 @@
#include "HopcroftGraph.h" #include "HopcroftGraph.h"
#include "HopcroftDebug.h" #include "HopcroftDebug.h"
   
#include <algorithm> #include <alib/algorithm>
   
#include <exception/CommonException.h> #include <exception/CommonException.h>
   
#include <iostream> #include <alib/iostream>
   
namespace graph namespace graph
{ {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef GRAPH_HOPCROFT_GRAPH_H_ #ifndef GRAPH_HOPCROFT_GRAPH_H_
#define GRAPH_HOPCROFT_GRAPH_H_ #define GRAPH_HOPCROFT_GRAPH_H_
   
#include <vector> #include <alib/vector>
   
#include <graph/GraphClasses.h> #include <graph/GraphClasses.h>
   
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#include "HopcroftImpl.h" #include "HopcroftImpl.h"
#include "HopcroftDebug.h" #include "HopcroftDebug.h"
   
#include <tuple> #include <alib/tuple>
#include <iostream> #include <alib/iostream>
#include <algorithm> #include <alib/algorithm>
   
#include <exception/CommonException.h> #include <exception/CommonException.h>
   
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#ifndef GRAPH_HOPCROFT_IMPL_H_ #ifndef GRAPH_HOPCROFT_IMPL_H_
#define GRAPH_HOPCROFT_IMPL_H_ #define GRAPH_HOPCROFT_IMPL_H_
   
#include <list> #include <alib/list>
#include <vector> #include <alib/vector>
#include <unordered_map> #include <alib/unordered_map>
   
#include "HopcroftGraph.h" #include "HopcroftGraph.h"
   
......
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
   
#include "FordFulkerson.h" #include "FordFulkerson.h"
   
#include <unordered_map> #include <alib/unordered_map>
#include <queue> #include <queue>
#include <string> #include <alib/string>
#include <sstream> #include <sstream>
#include <climits> #include <climits>
#include <stdexcept> #include <stdexcept>
......
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