SysML-v2-Release icon indicating copy to clipboard operation
SysML-v2-Release copied to clipboard

Inconsistent behaviour

Open pjljvandelaar opened this issue 2 years ago • 0 comments

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

pjljvandelaar avatar May 17 '23 07:05 pjljvandelaar