Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63d9709 commit 2e9dccfCopy full SHA for 2e9dccf
include/behaviortree_cpp_v3/controls/parallel_node.h
@@ -31,8 +31,8 @@ class ParallelNode : public ControlNode
31
32
static PortsList providedPorts()
33
{
34
- return { InputPort<unsigned>(THRESHOLD_SUCCESS),
35
- InputPort<unsigned>(THRESHOLD_FAILURE) };
+ return { InputPort<unsigned>(THRESHOLD_SUCCESS, "number of childen which need to succeed to trigger a SUCCESS )),
+ InputPort<unsigned>(THRESHOLD_FAILURE, 1, "number of childen which need to fail to trigger a FAILURE ) };
36
}
37
38
~ParallelNode() = default;
0 commit comments