HansBug's picture
Sync raw source code, with 301 records, on 2024-08-14 05:51:28 CST
5070096 verified
raw
history blame
800 Bytes
standard library package Allocations {
doc
/*
* This package defines the base types for allocations and related structural elements
* in the SysML language.
*/
private import Base::Anything;
private import Connections::*;
allocation def Allocation :> BinaryConnection {
doc
/*
* Allocation is the most general class of allocation, represented as a connection
* between the source of the allocation and the target. Allocation is the base type
* of all AllocationDefinitions.
*/
end source: Anything[0..*] :>> BinaryConnection::source;
end target: Anything[0..*] :>> BinaryConnection::target;
}
abstract allocation allocations: Allocation[0..*] nonunique :> binaryConnections {
doc
/*
* allocations is the base feature of all AllocationUsages.
*/
}
}