problem
Problem struct or object for the selected solver namespace.
reach = copp.solver.reach_set2.bidirectional(problem, options)
Returns a ReachSet containing a_max and a_min after enforcing both boundary directions. Both vectors are PROBLEM.s_len-by-1 double columns.
problemProblem struct or object for the selected solver namespace.
optionsSolver options struct or object for the selected solver namespace. Default: copp.solver.reach_set2.Options()
reachReturned value from copp.solver.reach_set2.bidirectional. See Description for its shape and meaning.
ExampleCommon.setup_path(); ctx = ExampleCommon.second_order_context(); problem = copp.solver.reach_set2.Problem(ctx.robot); options = copp.solver.reach_set2.Options(); reach_set = copp.solver.reach_set2.bidirectional(problem, options);