/*
* MainClass.java
*
* Created on 2007年11月20日, 下午1:38
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
import Compressor.*;
/**
*
* @author yuhui_bear
*/
public class MainClass {
/**
* Creates a new instance of MainClass
*/
public MainClass() {
}
public static void main(String[] arg){
MainUI show = new MainUI("神经网络算法训练器");
// TrainDiagram show = new TrainDiagram("神经网络算法训练器");
show.setVisible(true);
}
}