flow-connection-definition-connection-ends

Available in: SysML

This checks that flow definitions have at most two flow ends.

Specification

A FlowDefinition may not have more than two flow_ends.

Example

flow def F { // error
    end a;
    end b;
    end c;
}

Remove the additional ends:

flow def F { // ok
    end a;
    end b;
}