/** A class used to start the program @author Erika Harrison @version 1.0 24-06-02 */ public class Main { //initalizes the program public static void main(String[] args) { Simulation sim = new Simulation(); //all seeds & means are retrieved from the Constants class sim.runSimulation(Constants.SEEDA, Constants.SEEDT, Constants.SEEDS, Constants.SEEDL, Constants.SEED_DECISION, Constants.MEANA, Constants.MEANT, Constants.MEANS, Constants.MEANL, Constants.P); } }