- import Model.LayeredGraphNode;
- import View.MainView;
- import inputReader.Reader;
- public class Main {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Reader r = new Reader( "test.graph" );
- LayeredGraphNode graph = r.readInputGraph();
- new MainView( graph );
- }
- }
|