1classdef (Sealed) NodeType
2 % Enumeration of node types.
4 % Copyright (c) 2012-2026, Imperial College London
8 FiniteCapacityRegion = 10;
25 function txt = toText(nodetype)
27 case NodeType.FiniteCapacityRegion
28 txt =
'FiniteCapacityRegion';
29 case NodeType.Transition
41 case NodeType.ClassSwitch
54 line_error(mfilename,
'Unrecognized node type.');