This repository has been archived on 2023-08-28. You can view files and clone it, but cannot push or open issues or pull requests.
ntr-interferences/src/main/java/fr/ntr/Main.java

30 lines
1.1 KiB
Java
Raw Normal View History

2023-03-03 10:22:51 +01:00
package fr.ntr;
import fr.ntr.scheduler.RoundRobin;
2023-03-03 12:10:32 +01:00
2023-03-03 10:22:51 +01:00
public class Main {
2023-03-03 12:10:32 +01:00
2023-03-03 10:22:51 +01:00
public static void main(String[] args) {
2023-03-03 12:10:32 +01:00
//TODO ajouter accès à AccessPoint
2023-03-10 08:06:56 +01:00
if(args.length == 2) {
int numberOfTicks; // Nombre de ticks de la simulation -> durée de la simulation
int maximumLoad; // Nombre maximal d'utilisateurs dans le système
2023-03-10 08:06:56 +01:00
try {
numberOfTicks = Integer.parseInt(args[0]);
maximumLoad = Integer.parseInt(args[1]);
System.out.println("ticks: " + numberOfTicks + ", users: " + maximumLoad);
} catch (NumberFormatException e) {
System.err.println("Cannot parse launch argument to integer");
System.exit(1);
return;
2023-03-10 08:06:56 +01:00
}
AccessPoint accessPoint = new AccessPoint(new RoundRobin("round robin", 0), 0, 50);
accessPoint.startSimulation(numberOfTicks, maximumLoad);
2023-03-10 08:06:56 +01:00
} else {
System.err.println("Please give launch arguments");
System.err.println("gradle run --args=\"<number of ticks> <number of users>\"");
System.exit(1);
}
2023-03-03 10:22:51 +01:00
}
2023-03-10 09:17:15 +01:00
}