FAUST compiler  0.9.9.6b8
graphSorting.hh
Go to the documentation of this file.
00001 #ifndef __GRAPHSORTING__
00002 #define __GRAPHSORTING__
00003 
00004 
00005 #include <set>
00006 #include "loop.hh"
00007 
00008  
00009 
00010 typedef set<Loop*>      lset;
00011 typedef vector<Loop*>   lvec;
00012 typedef vector<lset>    lgraph;    
00013 
00019 void sortGraph(Loop* root,lgraph& V);
00020 
00021 #endif