Browse Source

Fixed input of BFS algorithm

Yentl Van Tendeloo 8 years ago
parent
commit
ca93cd1e2c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      models/bfs.alc

+ 1 - 1
models/bfs.alc

@@ -13,7 +13,7 @@ Element function bfs(params : Element, output_mms : Element):
 	Element path_copy
 	String option
 
-	model = params["reachability"]
+	model = params["reachability_graph"]
 
 	worklist = create_node()
 	initial = set_pop(allInstances(model, "InitialState"))