StData.gui.main(new String[0]);
}
public static void CHECK(File f) {
READER read = null;
try {
read = new READER(f);
} catch (FileNotFoundException ex) {
Logger.getLogger(algoD.class.getName()).log(Level.SEVERE, null, ex);
}
while (true) {
try {
System.out.println(read.nextLine());
} catch (IOException ex) {
Logger.getLogger(algoD.class.getName()).log(Level.SEVERE, null, ex);
}
}
}