flow-connection-definition-connection-ends
Available in: SysML
This checks that flow definitions have at most two flow ends.
Specification
A
FlowDefinitionmay not have more than twoflow_ends.
Example
flow def F { // error
end a;
end b;
end c;
}
Remove the additional ends:
flow def F { // ok
end a;
end b;
}