Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent behaviour #67

Open
pjljvandelaar opened this issue May 17, 2023 · 0 comments
Open

Inconsistent behaviour #67

pjljvandelaar opened this issue May 17, 2023 · 0 comments

Comments

@pjljvandelaar
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant