We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ddf7b0 commit a47abc2Copy full SHA for a47abc2
vigir_ltl_synthesizer/src/vigir_ltl_synthesizer/ltl_synthesis_server.py
@@ -86,9 +86,12 @@ def call_slugs_synthesizer(name):
86
Handles potential failures, such as the specification being unrealizable.
87
'''
88
89
- options = ["--jsonOutput"] # Do we need the '--sysInitRoboticsSemantics' option?
+ options = ["--explicitStrategy",
90
+ "--jsonOutput",
91
+ "--sysInitRoboticsSemantics"]
92
slugs_cmd = ['slugs'] + options + [name + ".slugsin", name + ".json"]
93
slugs_cmd = ' '.join(slugs_cmd) # convert to string for use with the commands module
94
+ rospy.loginfo("[vigir_ltl_synthesizer] Calling SLUGS: \n\t%s", slugs_cmd)
95
96
(status, slugs_output) = commands.getstatusoutput(slugs_cmd)
97
0 commit comments