aboutsummaryrefslogtreecommitdiff
path: root/src/cycleDetection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cycleDetection.h')
-rw-r--r--src/cycleDetection.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/cycleDetection.h b/src/cycleDetection.h
deleted file mode 100644
index e1b62e0..0000000
--- a/src/cycleDetection.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef CYCLEDETECTION_H
-#define CYCLEDETECTION_H
-
-#include "Graph.h"
-
-// Runs Kahn's algorithm on the graph, and outputs 'CYCLE DETECTED!\n'
-// if a DAG cannot be created, or the vertices as a list fx. '4, 0, 1, 3, 2\n'
-// representing an ordering in the DAG.
-// The output is printed to stdout.
-// The input may be altered in the process.
-void cycleDetection(Graph *g);
-
-#endif // CYCLEDETECTION_H