浏览代码

Fixed input of BFS algorithm

Yentl Van Tendeloo 8 年之前
父节点
当前提交
ca93cd1e2c
共有 1 个文件被更改,包括 1 次插入1 次删除
  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"))