Skip to content

Commit 8bae631

Browse files
committed
Updated for 2025.09.1.
1 parent 1d1afb7 commit 8bae631

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed
-144 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.52.0"
24+
set SYSML_VERSION="0.52.1"
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.52.0"
25+
SYSML_VERSION="0.52.1"
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)

kerml/src/examples/Simple Tests/Associations.kerml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)