Skip to content
Snippets Groups Projects
Commit 9248f855 authored by Isobel's avatar Isobel
Browse files

removed buggy files

parent aadfe671
Branches
No related tags found
No related merge requests found
Showing
with 0 additions and 777 deletions
File deleted
# Seed
#Seed=2020
Seed=30006
# Floors
Floors=12
# Mail_To_Create
Mail_to_Create=200
# Mail_Max_Weight
Mail_Max_Weight=2000
# The duration of receiving new mails
Mail_Receving_Length=120
# Robots
Robots=3
ChargeThreshold=0
CommercialDisplay=false
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
This diff is collapsed.
package automail;
import simulation.IMailDelivery;
public class Automail {
public Robot[] robots;
public MailPool mailPool;
public Automail(MailPool mailPool, IMailDelivery delivery, int numRobots) {
/** Initialize the MailPool */
this.mailPool = mailPool;
/** Initialize robots */
robots = new Robot[numRobots];
for (int i = 0; i < numRobots; i++) robots[i] = new Robot(delivery, mailPool, i);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment