Пример #1
0
 /**
  * The main method starts the Java application.
  *
  * @param args[] the input parameters
  */
 public static void main(String[] args) {
   CalculationControl.createApp(new SchroedingerApp(), args);
 }
Пример #2
0
 /**
  * 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());
 }
 /**
  * Starts Java application.
  *
  * @param args command line parameters
  */
 public static void main(String args[]) {
   CalculationControl.createApp(new IsingAutoCorrelatorApp());
 }
Пример #4
0
 /**
  * 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());
 }