pcctest
This commit is contained in:
parent
3709024dbd
commit
71002bb285
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ public class AStarAlgorithm extends DijkstraAlgorithm {
|
|||
ArrayList<Label> labelSommets = new ArrayList<Label>();
|
||||
for(int i = 0; i< tailleGraphe; i++ )
|
||||
{
|
||||
currentLabel = new LabelStar(data.getGraph().get(i), destination);
|
||||
currentLabel = new LabelStar(data.getGraph().get(i), destination, data.getMode());
|
||||
labelSommets.add(currentLabel);
|
||||
}
|
||||
return labelSommets;
|
||||
|
|
|
@ -38,7 +38,7 @@ public class PCCTest{
|
|||
@BeforeClass
|
||||
public static void initAll() throws Exception
|
||||
{
|
||||
final String nomUser = "brunetto";
|
||||
final String nomUser = "norgeux";
|
||||
// Visit these directory to see the list of available files on Commetud.
|
||||
|
||||
//Récupération des cartes
|
||||
|
|
Loading…
Reference in a new issue