-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: 'Motion_MDP' object has no attribute 'edge' #1
Comments
Thanks for the interest! For now, you may refter/cite the axiv version: https://arxiv.org/pdf/1706.05209.pdf The . use networkx 1.x Let me know, so we don't double the work. |
@MengGuo 非常感谢您的帮助,根据您的建议使用networkx 1.9,现在 |
Hello, there is another executable nevertheless, switch to Linux/unix if possible as it would make your life much easier. |
@MengGuo 我已经将 |
|
Mr. Guo , I met the same question in Ubuntu and it seems that my ltl2dstar is correct. |
@hapoy9 @mingyucai @LiuZesensengsheng I can't verify this, but have you guys also compiled |
Which version Ubuntu is preferred? I use Ubuntu22, and there are some issues when run the examples? -------Motion MDP Initialized------- |
@SJTUGuofei it seems to be related your |
您好!请您原谅我用中文向您请教一些问题,担心自己英文无法描述清楚自己的问题。对您这个项目比较感兴趣,但是查阅您谷歌学术的论文也没有找到该项目对应的论文,您能提供一下该项目的相关论文吗?此外,我在运行此项目的test_example.py时,产生一下错误:
Traceback (most recent call last): File "test_example.py", line 61, in <module> motion_mdp = Motion_MDP(node_dict, edge_dict, U, initial_node, initial_label) File "C:\Users\keyan\Desktop\P_MDP_TG-master\P_MDP_TG-master\MDP_TG\mdp.py", line 16, in __init__ self.add_edges(edge_dict, U) File "C:\Users\keyan\Desktop\P_MDP_TG-master\P_MDP_TG-master\MDP_TG\mdp.py", line 41, in add_edges prop = self.edge[f_node][t_node]['prop'] AttributeError: 'Motion_MDP' object has no attribute 'edge'
您在mdp.py没有定义edge属性,而且在基类digraph.py中也没有该属性,只有edges方法,所以prop = self.edge[f_node][t_node]['prop']报错,我尝试修改为edges也没有解决问题,不太理解您这句的含义,麻烦您帮忙解决一下,非常感谢!
The text was updated successfully, but these errors were encountered: