// Copyright (c) 1996, 1997, 1998 Bruno R. Preiss, P.Eng. // $Author: brpreiss $ // $Date: 1998/12/13 22:01:52 $ // $RCSfile: Application8.java,v $ // $Revision: 3.3 $ package Opus5; /** * Application program that illustrates the use of a priority queue * to implement a discrete-event simulation. * @see Simulation * @author Bruno R. Preiss, P.Eng. * @version $Id: Application8.java,v 3.3 1998/12/13 22:01:52 brpreiss Exp $ **/ public class Application8 { //[ final String copyright = "@(#) Copyright (c) 1998 by Bruno R. Preiss, P.Eng."; //] /** * Invokes the simulation method. * @param args The command-line arguments. Ignored. # @see Simulation#run **/ public static void main (String[] args) { Simulation simulation = new Simulation (); simulation.run (10000); } }