/** * Starts Java application. * * @param args command line parameters */ public static void main(String args[]) { CalculationControl.createApp(new IsingAutoCorrelatorApp()); }
/** * The main method starts the Java application. * * @param args[] the input parameters */ public static void main(String[] args) { CalculationControl.createApp(new SchroedingerApp(), args); }
public static void main(String[] args) { // creates the program and reads xml data using command line arguments CalculationControl.createApp(new ParticleApp(), args); // command line arguments are optional // use args[0] = "default_particles.xml" to read the example }
/** * Starts the Java application. * * @param args command line parameters */ public static void main(String[] args) { // sets up calculation control structure using this class CalculationControl.createApp(new FallingParticlePlotApp()); }
public static void main(String[] args) { CalculationControl.createApp(new MeanFieldApp(), args); }
/** * Starts the Java application. * * @param args command line parameters */ public static void main( String[] args) { // creates a calculation control structure using this class CalculationControl.createApp(new DrawingWorldApp()); }
public static void main(String[] args) { CalculationControl.createApp(new CameraApp()); }