Rename interpretor to interpreter.
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / compiler / headers / graphSorting.hh
diff --git a/interpretor/preprocessor/faust-0.9.47mr3/compiler/headers/graphSorting.hh b/interpretor/preprocessor/faust-0.9.47mr3/compiler/headers/graphSorting.hh
deleted file mode 100644 (file)
index 5a4daa7..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __GRAPHSORTING__
-#define __GRAPHSORTING__
-
-
-#include <set>
-#include "loop.hh"
-
-
-typedef set<Loop*>      lset;
-typedef vector<Loop*>   lvec;
-typedef vector<lset>    lgraph;    
-
-/**
- * Topological sort of an acyclic graph of loops starting 
- * from its root. The loops are collect in an lgraph : a 
- * vector of sets of loops
- */
-void sortGraph(Loop* root,lgraph& V);
-
-#endif