path += sep;
path += name;
Debug.println(3, true, "Writing flow graph to: " + path);
FileOutputStream out = new FileOutputStream(path);
PrintStream pout = new PrintStream(out);
new FlowGraph2Dot(pout).print(g);
pout.close();
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
}