|
GraphLibrary
0.0.1
A simple library that implements various graph algorithms.
|
Classes | |
| class | YAMLReader |
| Class to Read from a YAML file. More... | |
Functions | |||||
| void | compileLatex (const char *filename, const char *arguments="") | ||||
| Invokes lualatex command to compile tex to pdf. More... | |||||
Prints all contents of the given GraphLib container. | |||||
| |||||
| template<class container > | |||||
| void | printContainer (const container &rhs) | ||||
| Unspecialized template to throw errors. More... | |||||
| template<class idx_t > | |||||
| void | printContainer (const std::list< idx_t > &rhs) | ||||
| Prints all elements of an std::list. More... | |||||
| template<class idx_t > | |||||
| void | printContainer (const std::vector< idx_t > &rhs) | ||||
| Prints all elements of an std::vector. More... | |||||
| template<class idx_t > | |||||
| void | printContainer (const std::deque< idx_t > &rhs) | ||||
| Prints all elements of an std::queue. More... | |||||
| template<class idx_t > | |||||
| void | printContainer (const std::stack< idx_t > &rhs) | ||||
| Prints all elements of an std::stack. More... | |||||
| void gl::io::compileLatex | ( | const char * | filename, |
| const char * | arguments = "" |
||
| ) |
Invokes lualatex command to compile tex to pdf.
| filename | Name of the file to compile |
| arguments | Optional additional arguments |
| void gl::io::printContainer | ( | const container & | rhs | ) |
Unspecialized template to throw errors.
| void gl::io::printContainer | ( | const std::list< idx_t > & | rhs | ) |
Prints all elements of an std::list.
| void gl::io::printContainer | ( | const std::vector< idx_t > & | rhs | ) |
Prints all elements of an std::vector.
| void gl::io::printContainer | ( | const std::deque< idx_t > & | rhs | ) |
Prints all elements of an std::queue.
| void gl::io::printContainer | ( | const std::stack< idx_t > & | rhs | ) |
Prints all elements of an std::stack.