Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package info.rmarcus.ggen4j;
- import info.rmarcus.ggen4j.graph.GGenGraph;
- public class Driver {
- public static void main(String[] args) throws GGenException {
- GGenCommand.GGEN_PATH = "/home/ryan/local/bin/ggen";
- GGenGraph gg = GGen.dataflowGraph().sparseLU(4).generateGraph().topoSort();
- System.out.println("Sources: " + gg.getSources());
- System.out.println("As DOT: " + gg.toGraphviz());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment