Skip to content

Commit 1d1afb7

Browse files
committed
Updated for 2025-09.
1 parent 3bbd73a commit 1d1afb7

28 files changed

Lines changed: 226 additions & 337 deletions

File tree

9.83 KB
Binary file not shown.
143 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.51.0"
24+
set SYSML_VERSION="0.52.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.51.0"
25+
SYSML_VERSION="0.52.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)

kerml/src/examples/Simple Tests/MetadataTest.kerml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,18 @@ package MetadataTest {
3838
}
3939
}
4040

41+
class CC;
42+
struct SS {
43+
feature cc : CC;
44+
}
45+
46+
metaclass M :> Metaobjects::SemanticMetadata {
47+
:>> annotatedElement : KerML::Class;
48+
:>> baseType = if annotatedElement istype KerML::Structure ?
49+
SS meta KerML::Type else CC meta KerML::Class;
50+
}
51+
52+
#M struct T {
53+
feature :>> cc;
54+
}
4155
}
Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
package Redefinition {
2-
class Occurrence;
3-
class Transfer {
4-
feature transferSource;
5-
feature item;
6-
assoc SourceOutputLink specializes Objects::BinaryLinkObject {
7-
end [1] feature source: Occurrence;
8-
end [1..*] feature target: Occurrence;
9-
}
10-
connector sourceOutputLink: SourceOutputLink[1..*] from transferSource to item {
11-
feature startShot: Occurrence redefines SourceOutputLink::startShot;
12-
feature endShot: Occurrence redefines SourceOutputLink::endShot;
13-
}
2+
3+
classifier A {
4+
feature f;
5+
}
6+
7+
classifier B specializes A {
8+
feature redefines f {
9+
feature g;
10+
}
11+
}
12+
13+
classifier C specializes A, B {
14+
feature subsets f {
15+
feature redefines g;
16+
}
17+
}
18+
19+
class X {
20+
feature redefines startShot;
21+
feature redefines endShot;
1422
}
1523
}

sysml.library.xmi.implied/Domain Libraries/Geometry/ShapeItems.sysmlx

Lines changed: 14 additions & 16 deletions
Large diffs are not rendered by default.

sysml.library.xmi.implied/Domain Libraries/Geometry/SpatialItems.sysmlx

Lines changed: 11 additions & 27 deletions
Large diffs are not rendered by default.

sysml.library.xmi.implied/Domain Libraries/Quantities and Units/ISQSpaceTime.sysmlx

Lines changed: 42 additions & 126 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)