ajout fichier explications
This commit is contained in:
parent
c539e72f6b
commit
8e44b2daf6
2 changed files with 4 additions and 1 deletions
|
@ -311,7 +311,8 @@ public abstract class PriorityQueueTest {
|
|||
Assume.assumeFalse(queue.isEmpty());
|
||||
int min = Collections.min(Arrays.asList(parameters.data)).get();
|
||||
for (MutableInteger mi : parameters.data) {
|
||||
// Update value before removing it. This is what happens when updating a Dijkstra label before updating it.
|
||||
// Update value before removing it. This is what happens when updating a
|
||||
// Dijkstra label before updating it.
|
||||
mi.set(--min);
|
||||
queue.remove(mi);
|
||||
assertEquals(parameters.data.length - 1, queue.size());
|
||||
|
|
2
explications.txt
Normal file
2
explications.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
on implémente les graphes avec des listes d'adjacences car les graphes routiers sont planaires
|
||||
|
Loading…
Reference in a new issue