Skip to content

Inconsistent behaviour #67

@pjljvandelaar

Description

@pjljvandelaar

This sysml

action singleton_merge_ref {
	action A;
	action B;
	merge C;
	action D;
	
	first A;
		then B;
		then C;
		then D; 
}

is interpreted as
image

While this sysml code

action singleton_merge {
	action A;
	action B;
	action D;
	
	first A;
		then B;
		then merge C;
		then D; 
}

is interpreted as
image

For me, this different interpretation came as a total surprise.
Is this different behaviour really in the standard?
If so, could you add an explanation to the documentation?
If not, is the implementation wrong?

Thanks in advance for your answer,
Pierre

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions