Skip to content

Commit 0bd3623

Browse files
committed
Updated for 2026-02.
1 parent b48c37f commit 0bd3623

10 files changed

Lines changed: 32 additions & 3 deletions

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8
-30.5 KB
Binary file not shown.
-3.96 KB
Binary file not shown.

install/jupyter/README.pdf

0 Bytes
Binary file not shown.

install/jupyter/install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
@echo off
2323

24-
set SYSML_VERSION="0.56.0"
24+
set SYSML_VERSION="0.57.0"
2525

2626
echo --- Step 1: Testing Conda installation ---
2727
where conda

install/jupyter/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
set -e
2424

25-
SYSML_VERSION="0.56.0"
25+
SYSML_VERSION="0.57.0"
2626

2727
echo "--- Step 1: Testing Conda installation ---"
2828
command -v conda || (echo "Conda is not installed. Please install Conda and re-run." && return 1)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8

kerml/src/examples/Simple Tests/Connectors.kerml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,27 @@ package Connectors {
1717
end feature references a;
1818
end feature references b;
1919
}
20+
binding ab1 : AS of a = b;
2021

2122
succession a then b;
2223
succession s first a then b;
2324
succession {
2425
end feature references a;
2526
end feature references b;
2627
}
28+
succession s1 : AS first a then b;
29+
2730
}
2831

2932
class B {
30-
feature a : A;
33+
feature a : A;
3134
connector :> a.c1 from a.a to a.b;
3235
}
36+
37+
assoc struct AS {
38+
end a;
39+
end b;
40+
}
41+
42+
3343
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8

sysml/src/examples/Simple Tests/ConnectionTest.sysml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ package ConnectionTest {
1515

1616
connect p1.x to y;
1717
connect p1.x.x1 to y;
18+
19+
part a;
20+
part b;
21+
22+
bind a = b;
23+
binding ab bind a = b;
24+
binding ab1 : AB bind a = b;
25+
26+
first a then b;
27+
succession s first a then b;
28+
succession s1 : AB first a then b;
1829
}
1930

2031
abstract connection def C {
@@ -61,4 +72,6 @@ package ConnectionTest {
6172
}
6273

6374
metadata def M;
75+
76+
6477
}

0 commit comments

Comments
 (0)