Merge remote-tracking branch 'origin/ajout_cellule' into ajout_cellule
This commit is contained in:
commit
aa87a868a1
@ -14,8 +14,8 @@ import fr.ntr.scheduler.Scheduler;
|
|||||||
|
|
||||||
public class AccessPoint {
|
public class AccessPoint {
|
||||||
|
|
||||||
private Cell cell1;
|
private final Cell cell1;
|
||||||
private Cell cell2;
|
private final Cell cell2;
|
||||||
private List<User> users;
|
private List<User> users;
|
||||||
private FileOutputStream outputDataFile;
|
private FileOutputStream outputDataFile;
|
||||||
|
|
||||||
@ -80,14 +80,14 @@ public class AccessPoint {
|
|||||||
double bandwidth1 = frameCell1[k][l].getBandwidth();
|
double bandwidth1 = frameCell1[k][l].getBandwidth();
|
||||||
double bandwidth2 = frameCell2[k][l].getBandwidth();
|
double bandwidth2 = frameCell2[k][l].getBandwidth();
|
||||||
//User proche
|
//User proche
|
||||||
if (user1.getDistance() > 200d) {
|
if (user1.getDistance() < 200d) {
|
||||||
frameCell1[k][l].setBandwidth(bandwidth1 / 2);
|
frameCell1[k][l].getUser().getBandwidthTable()[k][l] = bandwidth1 / 2;
|
||||||
frameCell2[k][l].setBandwidth(bandwidth2 / 2);
|
frameCell2[k][l].getUser().getBandwidthTable()[k][l] = bandwidth2 / 2;
|
||||||
}
|
}
|
||||||
//User loin
|
//User loin
|
||||||
else {
|
else {
|
||||||
frameCell1[k][l].setBandwidth(bandwidth1 / 4);
|
frameCell1[k][l].getUser().getBandwidthTable()[k][l] = bandwidth1 / 4;
|
||||||
frameCell2[k][l].setBandwidth(bandwidth2 / 4);
|
frameCell2[k][l].getUser().getBandwidthTable()[k][l] = bandwidth2 / 4;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ public class Main {
|
|||||||
}
|
}
|
||||||
int timeSlotNb = 2;
|
int timeSlotNb = 2;
|
||||||
int subCarrierNb = 100;
|
int subCarrierNb = 100;
|
||||||
for(int i = 2; i < maximumLoad; i+=2) {
|
for(int i = 2; i < maximumLoad; i += 2) {
|
||||||
List<User> users = generateUsers(i, timeSlotNb, subCarrierNb);
|
List<User> users = generateUsers(i, timeSlotNb, subCarrierNb);
|
||||||
ResourceBlock[][] frame = new ResourceBlock[timeSlotNb][subCarrierNb];
|
ResourceBlock[][] frame = new ResourceBlock[timeSlotNb][subCarrierNb];
|
||||||
//TODO : changes schedulers
|
//TODO : changes schedulers
|
||||||
|
Reference in New Issue
Block a user