File tree Expand file tree Collapse file tree
kerml/src/examples/Simple Tests
sysml/src/examples/Simple Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121
2222@ echo off
2323
24- set SYSML_VERSION = " 0.52.0 "
24+ set SYSML_VERSION = " 0.52.1 "
2525
2626echo --- Step 1: Testing Conda installation ---
2727where conda
Original file line number Diff line number Diff line change 2222
2323set -e
2424
25- SYSML_VERSION=" 0.52.0 "
25+ SYSML_VERSION=" 0.52.1 "
2626
2727echo " --- Step 1: Testing Conda installation ---"
2828command -v conda || (echo " Conda is not installed. Please install Conda and re-run." && return 1)
Original file line number Diff line number Diff line change @@ -11,4 +11,12 @@ package Associations {
1111 end x1;
1212 end [0..*] feature y1 redefines y;
1313 }
14+
15+ metaclass M;
16+ assoc XY {
17+ end [0..1] feature x : X {
18+ @M;
19+ }
20+ end feature y : Y;
21+ }
1422}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ package ConnectionTest {
3939
4040 connection {
4141 part q;
42- end [2] ref end1 ::> d1 :> q;
42+ end ref end1 ::> d1 :> q;
4343 end end2 ::> d2;
4444 }
4545
@@ -54,7 +54,11 @@ package ConnectionTest {
5454 part def B;
5555
5656 connection def AB {
57- end a : A;
58- end b : B crosses a.b;
57+ end [1] item a : A {
58+ @M;
59+ }
60+ end b : B;
5961 }
62+
63+ metadata def M;
6064}
You can’t perform that action at this time.
0 commit comments