Browse Source

à défaut de résoudre les problèmes, ajout de tests A*

Favary Pierre 2 years ago
parent
commit
a72387264f

+ 61
- 13
be-graphes-algos/src/test/java/org/insa/graphs/algorithm/shortestpath/DijkstraAlgorithmTest.java View File

@@ -48,26 +48,30 @@ public class DijkstraAlgorithmTest{
48 48
     private static ArcInspector pietime = ArcInspectorFactory.getAllFilters().get(4);
49 49
     
50 50
 	private static ShortestPathSolution dijkal, dijkcl, dijkat, dijkct, dijkpt, onenodijk, emptydijk, invalidijk;
51
-	private static ShortestPathSolution bfaal, bfacl, bfaat, bfact, bfapt; //les BF et Dijkstra sur deux lignes différentes par souci de lisibilité
51
+	private static ShortestPathSolution bfaal, bfacl, bfaat, bfact, bfapt; //les BF, Dijkstra et A* sur trois lignes différentes par souci de lisibilité
52
+	private static ShortestPathSolution asal, ascl, asat, asct, aspt, asonenod, asempty, asinvalid;
52 53
     
53 54
     
54 55
     @BeforeClass
55 56
     public static void initAll() throws IOException {
56 57
 
57
-    	//gestion des restrictions pour pouvoir créer les Bellman-Ford
58
+    	/*//gestion des restrictions pour pouvoir créer les Bellman-Ford
58 59
     	AccessRestrictions voiture, pedestre;
59 60
     	AccessRestrictions.AccessRestriction authorise = AccessRestrictions.AccessRestriction.ALLOWED;
60
-    	EnumMap<AccessMode, AccessRestrictions.AccessRestriction> pmap = null, vmap = null;
61
+    	EnumMap<AccessMode, AccessRestrictions.AccessRestriction> pmap, vmap;
62
+    	pmap = null;//dkgfvbwslidfue djeflmmqff^dfomqf^sf652s894fd5swrtwedf+e
63
+    	vmap = new EnumMap<AccessMode, AccessRestrictions.AccessRestriction>();
61 64
     	pmap.put(AccessMode.FOOT, authorise);
62 65
     	vmap.put(AccessMode.MOTORCAR, authorise);
63 66
     	pedestre = new AccessRestrictions(pmap);
64
-    	voiture = new AccessRestrictions(vmap);
67
+    	voiture = new AccessRestrictions(vmap);*/
65 68
     	
66
-        RoadInformation speed10 = new RoadInformation(RoadType.MOTORWAY, voiture, false, 36, ""),
67
-                speed20 = new RoadInformation(RoadType.MOTORWAY, voiture, false, 72, ""),
68
-                pietonable = new RoadInformation(RoadType.PEDESTRIAN, pedestre, false, 5, "");
69
+        RoadInformation speed10 = new RoadInformation(RoadType.MOTORWAY, null, false, 36, ""),
70
+                speed20 = new RoadInformation(RoadType.MOTORWAY, null, false, 72, ""),
71
+                pietonable = new RoadInformation(RoadType.PEDESTRIAN, null, false, 5, "");
69 72
         //cyclable = new RoadInformation(RoadType.CYCLEWAY, null, false, 20, ""),
70 73
         //toutes les routes ici sont à double sens
74
+        //attention, les piétons ont une maxspeed définie à 5
71 75
         
72 76
         // Create nodes
73 77
         nodes = new Node[8];
@@ -116,9 +120,19 @@ public class DijkstraAlgorithmTest{
116 120
         emptydijk = (new DijkstraAlgorithm(emptydata)).run();//erreur ici
117 121
         //invalidijk = (new DijkstraAlgorithm(invalidata)).run();//et erreur là
118 122
         
123
+        //initialisation des A*
124
+        asal = (new DijkstraAlgorithm(dataal)).run();
125
+        ascl = (new DijkstraAlgorithm(datacl)).run();
126
+        asat = (new DijkstraAlgorithm(dataat)).run();
127
+        asct = (new DijkstraAlgorithm(datact)).run();
128
+        //aspt = (new DijkstraAlgorithm(datapt)).run();//erreur ici
129
+        asonenod = (new DijkstraAlgorithm(onenodata)).run();
130
+        asempty = (new DijkstraAlgorithm(emptydata)).run();//erreur ici
131
+        //asinvalid = (new DijkstraAlgorithm(invalidata)).run();//et erreur là
132
+        
119 133
         //initialisation des Bellman-Ford pour comparaison
120 134
 		bfaal = (new BellmanFordAlgorithm(dataal)).run();
121
-		bfacl = (new BellmanFordAlgorithm(datacl)).run();
135
+		//bfacl = (new BellmanFordAlgorithm(datacl)).run();
122 136
 		/*bfaat = (new BellmanFordAlgorithm(dataat)).run();
123 137
 		bfact = (new BellmanFordAlgorithm(datact)).run();
124 138
 		bfapt = (new BellmanFordAlgorithm(datapt)).run();*/ //erreurs partout ici...
@@ -135,7 +149,7 @@ public class DijkstraAlgorithmTest{
135 149
 	-tas valide.)*/
136 150
 	
137 151
 	@Test
138
-	public void cheminValide() {
152
+	public void cheminValideD() {
139 153
 		assertTrue(dijkal.getPath().isValid());
140 154
 		assertTrue(dijkcl.getPath().isValid());
141 155
 		assertTrue(dijkat.getPath().isValid());
@@ -147,7 +161,19 @@ public class DijkstraAlgorithmTest{
147 161
 	}
148 162
 	
149 163
 	@Test
150
-	public void faisable() {
164
+	public void cheminValideA() {
165
+		assertTrue(asal.getPath().isValid());
166
+		assertTrue(ascl.getPath().isValid());
167
+		assertTrue(asat.getPath().isValid());
168
+		assertTrue(asct.getPath().isValid());
169
+		//assertTrue(aspt.getPath().isValid());//pas normal
170
+		assertTrue(asonenod.getPath().isValid());
171
+		assertTrue(asempty.getPath().isValid());
172
+		//assertFalse(asinvalid.getPath().isValid());
173
+	}
174
+	
175
+	@Test
176
+	public void faisableD() {
151 177
 		assertTrue(dijkal.isFeasible());
152 178
 		assertTrue(dijkcl.isFeasible());
153 179
 		assertTrue(dijkat.isFeasible());
@@ -158,10 +184,21 @@ public class DijkstraAlgorithmTest{
158 184
 		//assertFalse(invalidijk.isFeasible());	
159 185
 	}
160 186
 	
187
+	@Test
188
+	public void faisableA() {
189
+		assertTrue(asal.isFeasible());
190
+		assertTrue(ascl.isFeasible());
191
+		assertTrue(asat.isFeasible());
192
+		assertTrue(asct.isFeasible());
193
+		//assertTrue(aspt.isFeasible());
194
+		assertTrue(asonenod.isFeasible());
195
+		assertFalse(asempty.isFeasible());
196
+		//assertFalse(asinvalid.isFeasible());	
197
+	}
161 198
 	
162 199
 	//résultat identique à Bellman-Ford (sur les petits scénarios)
163 200
 	@Test
164
-	public void sameasBF() {
201
+	public void DsameasBF() {
165 202
 		assertTrue(Float.compare(dijkal.getPath().getLength(),bfaal.getPath().getLength())==0);
166 203
 		//assertTrue(Float.compare(dijkcl.getPath().getLength(),bfacl.getPath().getLength())==0);
167 204
 		//assertTrue(Double.compare(dijkat.getPath().getMinimumTravelTime(),bfaat.getPath().getMinimumTravelTime())==0);
@@ -169,7 +206,16 @@ public class DijkstraAlgorithmTest{
169 206
 		//assertTrue(Double.compare(dijkpt.getPath().getMinimumTravelTime(),bfapt.getPath().getMinimumTravelTime())==0);
170 207
 	}
171 208
 	
172
-	//grands scénarios:
209
+	@Test
210
+	public void AsameasBF() {
211
+		assertTrue(Float.compare(asal.getPath().getLength(),bfaal.getPath().getLength())==0);
212
+		//assertTrue(Float.compare(ascl.getPath().getLength(),bfacl.getPath().getLength())==0);
213
+		//assertTrue(Double.compare(asat.getPath().getMinimumTravelTime(),bfaat.getPath().getMinimumTravelTime())==0);
214
+		//assertTrue(Double.compare(asct.getPath().getMinimumTravelTime(),bfact.getPath().getMinimumTravelTime())==0);
215
+		//assertTrue(Double.compare(aspt.getPath().getMinimumTravelTime(),bfapt.getPath().getMinimumTravelTime())==0);
216
+	}
217
+	
218
+	//grand scénario avec oracle:
173 219
 	@Test
174 220
 	public void testmap() throws FileNotFoundException, IOException{//A FAIRE
175 221
 		
@@ -184,8 +230,10 @@ public class DijkstraAlgorithmTest{
184 230
 		//quel inspector prendre? Le path est en longueur mais voitures seulement ou tout autorisé?
185 231
 		
186 232
 		DijkstraAlgorithm dijkmap = new DijkstraAlgorithm(new ShortestPathData(graphmap, pathmap.getOrigin(), pathmap.getDestination(), alllen));
187
-	
233
+		AStarAlgorithm asmap = new AStarAlgorithm(new ShortestPathData(graphmap, pathmap.getOrigin(), pathmap.getDestination(), alllen));
234
+		
188 235
 		assertTrue(dijkmap.run().getPath().getLength()==pathmap.getLength());
236
+		assertTrue(asmap.run().getPath().getLength()==pathmap.getLength());
189 237
 		//comparaison de la longueur
190 238
 	}
191 239
 }

Loading…
Cancel
Save