You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

384 lines
16 KiB

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Stormpy.gspn\n",
"\n",
"class GSPNGeneralized Stochastic Petri Net\n",
"\n",
"export_gspn_pnml_fileself: stormpy.gspn.gspn.GSPNfilepath: strNoneExport GSPN to PNML file\n",
"\n",
"export_gspn_pnpro_fileself: stormpy.gspn.gspn.GSPNfilepath: strNoneExport GSPN to PNPRO file\n",
"\n",
"get_immediate_transitionself: stormpy.gspn.gspn.GSPNname: strstorm::gspn::ImmediateTransition<double>Returns the immediate transition with the corresponding name\n",
"\n",
"get_immediate_transitionsself: stormpy.gspn.gspn.GSPNList[storm::gspn::ImmediateTransition<double>]> Returns the immediate transitions of this GSPN.\n",
"\n",
"\n",
"\n",
"<dl style='margin: 20px 0;'>\n",
"<dt>Return type</dt>\n",
"<dd>\n",
"list[stormpy.ImmediateTransition]\n",
"\n",
"</dd>\n",
"\n",
"</dl>\n",
"\n",
"get_initial_markingself: stormpy.gspn.gspn.GSPNarg0: Dict[int, int]arg1: intstorm::gspn::MarkingComputes the initial marking of this GSPN\n",
"\n",
"get_nameself: stormpy.gspn.gspn.GSPNstrGet name of GSPN\n",
"\n",
"get_number_of_immediate_transitionsself: stormpy.gspn.gspn.GSPNintGet the number of immediate transitions in this GSPN\n",
"\n",
"get_number_of_placesself: stormpy.gspn.gspn.GSPNintGet the number of places in this GSPN\n",
"\n",
"get_number_of_timed_transitionsself: stormpy.gspn.gspn.GSPNintGet the number of timed transitions in this GSPN\n",
"\n",
"get_partitionsself: stormpy.gspn.gspn.GSPNList[storm::gspn::TransitionPartition]Get the partitions of this GSPN\n",
"\n",
"get_place*args**kwargsOverloaded function.\n",
"\n",
"1. get_place(self: stormpy.gspn.gspn.GSPN, id: int) -> storm::gspn::Place \n",
" \n",
" \n",
" Returns the place with the corresponding id. \n",
" \n",
" \n",
" <dl style='margin: 20px 0;'>\n",
" <dt>param uint64_t id</dt>\n",
" <dd>\n",
" The ID of the place. \n",
" </dd>\n",
" <dt>rtype</dt>\n",
" <dd>\n",
" stormpy.Place \n",
" </dd>\n",
" \n",
" </dl>\n",
" \n",
" \n",
"1. get_place(self: stormpy.gspn.gspn.GSPN, name: str) -> storm::gspn::Place \n",
"\n",
"\n",
"get_placesself: stormpy.gspn.gspn.GSPNList[storm::gspn::Place]> Returns a vector of the places of this GSPN.\n",
"\n",
"\n",
"\n",
"<dl style='margin: 20px 0;'>\n",
"<dt>Return type</dt>\n",
"<dd>\n",
"list[stormpy.Place]\n",
"\n",
"</dd>\n",
"\n",
"</dl>\n",
"\n",
"get_timed_transitionself: stormpy.gspn.gspn.GSPNname: strstorm::gspn::TimedTransition<double>Returns the timed transition with the corresponding name\n",
"\n",
"get_timed_transitionsself: stormpy.gspn.gspn.GSPNList[storm::gspn::TimedTransition<double>]> Returns a vector of the timed transitions of this GSPN.\n",
"\n",
"\n",
"\n",
"<dl style='margin: 20px 0;'>\n",
"<dt>Return type</dt>\n",
"<dd>\n",
"list[stormpy.TimedTransition]\n",
"\n",
"</dd>\n",
"\n",
"</dl>\n",
"\n",
"get_transitionself: stormpy.gspn.gspn.GSPNname: strstorm::gspn::TransitionReturns the transition with the corresponding name\n",
"\n",
"immediate_transition_id_to_transition_idarg0: intintis_validself: stormpy.gspn.gspn.GSPNboolPerform some checks\n",
"\n",
"set_nameself: stormpy.gspn.gspn.GSPNarg0: strNoneSet name of GSPN\n",
"\n",
"timed_transition_id_to_transition_idarg0: intinttransition_id_to_immediate_transition_idarg0: intinttransition_id_to_timed_transition_idarg0: intintclass GSPNBuilderGeneralized Stochastic Petri Net Builder\n",
"\n",
"add_immediate_transitionself: stormpy.gspn.gspn.GSPNBuilderpriority: int = 0weight: float = 0name: str = ''intAdd an immediate transition to the GSPN\n",
"\n",
"add_inhibition_arc*args**kwargsOverloaded function.\n",
"\n",
"1. add_inhibition_arc(self: stormpy.gspn.gspn.GSPNBuilder, from: int, to: int, multiplicity: int=1) -> None \n",
" \n",
" \n",
" Add an new inhibition arc from a place to a transition. \n",
" \n",
" \n",
" <dl style='margin: 20px 0;'>\n",
" <dt>param from</dt>\n",
" <dd>\n",
" The ID or name of the place from which the arc is originating. \n",
" </dd>\n",
" <dt>type from</dt>\n",
" <dd>\n",
" uint_64_t or str \n",
" </dd>\n",
" <dt>param to</dt>\n",
" <dd>\n",
" The ID or name of the transition to which the arc goes to. \n",
" </dd>\n",
" <dt>type to</dt>\n",
" <dd>\n",
" uint_64_t or str \n",
" </dd>\n",
" <dt>param uint64_t multiplicity</dt>\n",
" <dd>\n",
" The multiplicity of the arc, default = 1. \n",
" </dd>\n",
" \n",
" </dl>\n",
" \n",
" \n",
"1. add_inhibition_arc(self: stormpy.gspn.gspn.GSPNBuilder, from: str, to: str, multiplicity: int=1) -> None \n",
"\n",
"\n",
"add_input_arc*args**kwargsOverloaded function.\n",
"\n",
"1. add_input_arc(self: stormpy.gspn.gspn.GSPNBuilder, from: int, to: int, multiplicity: int=1) -> None \n",
" \n",
" \n",
" Add a new input arc from a place to a transition \n",
" \n",
" \n",
" <dl style='margin: 20px 0;'>\n",
" <dt>param from</dt>\n",
" <dd>\n",
" The ID or name of the place from which the arc is originating. \n",
" </dd>\n",
" <dt>type from</dt>\n",
" <dd>\n",
" uint_64_t or str \n",
" </dd>\n",
" <dt>param uint_64_t to</dt>\n",
" <dd>\n",
" The ID or name of the transition to which the arc goes to. \n",
" </dd>\n",
" <dt>type from</dt>\n",
" <dd>\n",
" uint_64_t or str \n",
" </dd>\n",
" <dt>param uint64_t multiplicity</dt>\n",
" <dd>\n",
" The multiplicity of the arc, default = 1. \n",
" </dd>\n",
" \n",
" </dl>\n",
" \n",
" \n",
"1. add_input_arc(self: stormpy.gspn.gspn.GSPNBuilder, from: str, to: str, multiplicity: int=1) -> None \n",
"\n",
"\n",
"add_normal_arcself: stormpy.gspn.gspn.GSPNBuilderfrom: strto: strmultiplicity: int=1None> Add an arc from a named element to a named element.\n",
"Can be both input or output arc, but not an inhibition arc.\n",
"Convenience function for textual format parsers.\n",
"\n",
"\n",
"\n",
"<dl style='margin: 20px 0;'>\n",
"<dt>Parameters</dt>\n",
"<dd>\n",
"- from (str) – Source element in the GSPN from where this arc starts. \n",
"- to (str) – Target element in the GSPN where this arc ends. \n",
"- multiplicity (uint64_t) – Multiplicity of the arc, default = 1. \n",
"\n",
"\n",
"</dd>\n",
"\n",
"</dl>\n",
"\n",
"add_output_arc*args**kwargsOverloaded function.\n",
"\n",
"1. add_output_arc(self: stormpy.gspn.gspn.GSPNBuilder, from: int, to: int, multiplicity: int=1) -> None \n",
" \n",
" \n",
" Add an new output arc from a transition to a place. \n",
" \n",
" \n",
" <dl style='margin: 20px 0;'>\n",
" <dt>param from</dt>\n",
" <dd>\n",
" The ID or name of the transition from which the arc is originating. \n",
" </dd>\n",
" <dt>type from</dt>\n",
" <dd>\n",
" uint_64_t or str \n",
" </dd>\n",
" <dt>param to</dt>\n",
" <dd>\n",
" The ID or name of the place to which the arc goes to. \n",
" </dd>\n",
" <dt>type to</dt>\n",
" <dd>\n",
" uint_64_t or str \n",
" </dd>\n",
" <dt>param uint64_t multiplicity</dt>\n",
" <dd>\n",
" The multiplicity of the arc, default = 1. \n",
" </dd>\n",
" \n",
" </dl>\n",
" \n",
" \n",
"1. add_output_arc(self: stormpy.gspn.gspn.GSPNBuilder, from: str, to: str, multiplicity: int) -> None \n",
"\n",
"\n",
"add_placeself: stormpy.gspn.gspn.GSPNBuildercapacity: Optional[int] = 1initial_tokens: int = 0name: str = ''intAdd a place to the GSPN\n",
"\n",
"add_timed_transition*args**kwargsOverloaded function.\n",
"\n",
"1. add_timed_transition(self: stormpy.gspn.gspn.GSPNBuilder, priority: int, rate: float, name: str=’’) -> int \n",
"\n",
"\n",
"Add a timed transition to the GSPN\n",
"\n",
"1. add_timed_transition(self: stormpy.gspn.gspn.GSPNBuilder, priority: int, rate: float, num_servers: Optional[int], name: str=’’) -> int \n",
"\n",
"\n",
"build_gspnself: stormpy.gspn.gspn.GSPNBuilderexpression_manager: stormpy.storage.storage.ExpressionManager = Noneconstants_substitution: Dict[stormpy.storage.storage.Variable, stormpy.storage.storage.Expression] = {}storm::gspn::GSPNConstruct GSPN\n",
"\n",
"set_nameself: stormpy.gspn.gspn.GSPNBuildername: strNoneSet name of GSPN\n",
"\n",
"set_place_layout_infoself: stormpy.gspn.gspn.GSPNBuilderplace_id: intlayout_info: storm::gspn::LayoutInfoNone> Set place layout information.\n",
"\n",
"\n",
"\n",
"<dl style='margin: 20px 0;'>\n",
"<dt>Parameters</dt>\n",
"<dd>\n",
"- id (uint64_t) – The ID of the place. \n",
"- layout_info (stormpy.LayoutInfo) – The layout information. \n",
"\n",
"\n",
"</dd>\n",
"\n",
"</dl>\n",
"\n",
"set_transition_layout_infoself: stormpy.gspn.gspn.GSPNBuildertransition_id: intlayout_info: storm::gspn::LayoutInfoNone> Set transition layout information.\n",
"\n",
"\n",
"\n",
"<dl style='margin: 20px 0;'>\n",
"<dt>Parameters</dt>\n",
"<dd>\n",
"- id (uint64_t) – The ID of the transition. \n",
"- layout_info (stormpy.LayoutInfo) – The layout information. \n",
"\n",
"\n",
"</dd>\n",
"\n",
"</dl>\n",
"\n",
"class GSPNParserparseself: stormpy.gspn.gspn.GSPNParserfilename: strconstant_definitions: str = ''stormpy.gspn.gspn.GSPNclass GSPNToJaniBuilderbuildself: stormpy.gspn.gspn.GSPNToJaniBuilderautomaton_name: str = 'gspn_automaton'stormpy.storage.storage.JaniModelBuild Jani model from GSPN\n",
"\n",
"create_deadlock_propertiesself: stormpy.gspn.gspn.GSPNToJaniBuilderjani_model: stormpy.storage.storage.JaniModelList[stormpy.core.Property]Create standard properties for deadlocks\n",
"\n",
"class ImmediateTransitionImmediateTransition in a GSPN\n",
"\n",
"get_weightself: stormpy.gspn.gspn.ImmediateTransitionfloatGet weight of this transition\n",
"\n",
"no_weight_attachedself: stormpy.gspn.gspn.ImmediateTransitionboolTrue iff no weight is attached\n",
"\n",
"set_weightself: stormpy.gspn.gspn.ImmediateTransitionweight: floatNoneSet weight of this transition\n",
"\n",
"class LayoutInfoproperty rotationproperty xproperty yclass PlacePlace in a GSPN\n",
"\n",
"get_capacityself: stormpy.gspn.gspn.PlaceintGet the capacity of tokens of this place\n",
"\n",
"get_idself: stormpy.gspn.gspn.PlaceintGet the id of this place\n",
"\n",
"get_nameself: stormpy.gspn.gspn.PlacestrGet name of this place\n",
"\n",
"get_number_of_initial_tokensself: stormpy.gspn.gspn.PlaceintGet the number of initial tokens of this place\n",
"\n",
"has_restricted_capacityself: stormpy.gspn.gspn.PlaceboolIs capacity of this place restricted\n",
"\n",
"set_capacityself: stormpy.gspn.gspn.Placecap: Optional[int]NoneSet the capacity of tokens of this place\n",
"\n",
"set_nameself: stormpy.gspn.gspn.Placename: strNoneSet name of this place\n",
"\n",
"set_number_of_initial_tokensself: stormpy.gspn.gspn.Placetokens: intNoneSet the number of initial tokens of this place\n",
"\n",
"class TimedTransitionTimedTransition in a GSPN\n",
"\n",
"get_number_of_serversself: stormpy.gspn.gspn.TimedTransitionintGet number of servers\n",
"\n",
"get_rateself: stormpy.gspn.gspn.TimedTransitionfloatGet rate of this transition\n",
"\n",
"has_infinite_server_semanticsself: stormpy.gspn.gspn.TimedTransitionboolGet semantics of this transition\n",
"\n",
"has_k_server_semanticsself: stormpy.gspn.gspn.TimedTransitionboolGet semantics of this transition\n",
"\n",
"has_single_server_semanticsself: stormpy.gspn.gspn.TimedTransitionboolGet semantics of this transition\n",
"\n",
"set_infinite_server_semanticsself: stormpy.gspn.gspn.TimedTransitionNoneSet semantics of this transition\n",
"\n",
"set_k_server_semanticsself: stormpy.gspn.gspn.TimedTransitionk: intNoneSet semantics of this transition\n",
"\n",
"set_rateself: stormpy.gspn.gspn.TimedTransitionrate: floatNoneSet rate of this transition\n",
"\n",
"set_single_server_semanticsself: stormpy.gspn.gspn.TimedTransitionNoneSet semantics of this transition\n",
"\n",
"class TransitionTransition in a GSPN\n",
"\n",
"exists_inhibition_arcself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceboolCheck whether the given place is connected to this transition via an inhibition arc.\n",
"\n",
"exists_input_arcself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceboolCheck whether the given place is connected to this transition via an input arc.\n",
"\n",
"exists_output_arcself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceboolCheck whether the given place is connected to this transition via an output arc.\n",
"\n",
"fireself: stormpy.gspn.gspn.Transitionmarking: storm::gspn::Markingstorm::gspn::MarkingFire the transition if possible.\n",
"\n",
"get_idself: stormpy.gspn.gspn.TransitionintGet id of this transition\n",
"\n",
"get_inhibition_arc_multiplicityself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceintReturns the corresponding multiplicity.\n",
"\n",
"get_inhibition_placesself: stormpy.gspn.gspn.TransitionDict[int, int]get_input_arc_multiplicityself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceintReturns the corresponding multiplicity.\n",
"\n",
"get_input_placesself: stormpy.gspn.gspn.TransitionDict[int, int]get_nameself: stormpy.gspn.gspn.TransitionstrGet name of this transition\n",
"\n",
"get_output_arc_multiplicityself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceintReturns the corresponding multiplicity.\n",
"\n",
"get_output_placesself: stormpy.gspn.gspn.TransitionDict[int, int]get_priorityself: stormpy.gspn.gspn.TransitionintGet priority of this transition\n",
"\n",
"is_enabledself: stormpy.gspn.gspn.Transitionmarking: storm::gspn::MarkingboolCheck if the given marking enables the transition.\n",
"\n",
"remove_inhibition_arcself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceboolRemove an inhibition arc connected to a given place.\n",
"\n",
"remove_input_arcself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceboolRemove an input arc connected to a given place.\n",
"\n",
"remove_output_arcself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.PlaceboolRemove an output arc connected to a given place.\n",
"\n",
"set_inhibition_arc_multiplicityself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.Placemultiplicity: intNoneSet the multiplicity of the inhibition arc originating from the place.\n",
"\n",
"set_input_arc_multiplicityself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.Placemultiplicity: intNoneSet the multiplicity of the input arc originating from the place.\n",
"\n",
"set_nameself: stormpy.gspn.gspn.Transitionname: strNoneSet name of this transition\n",
"\n",
"set_output_arc_multiplicityself: stormpy.gspn.gspn.Transitionplace: stormpy.gspn.gspn.Placemultiplicity: intNoneSet the multiplicity of the output arc going to the place.\n",
"\n",
"set_priorityself: stormpy.gspn.gspn.Transitionpriority: intNoneSet priority of this transition\n",
"\n",
"class TransitionPartitionnr_transitionsself: stormpy.gspn.gspn.TransitionPartitionintGet number of transitions\n",
"\n",
"property priorityproperty transitions"
]
}
],
"metadata": {
"date": 1598178166.7294815,
"filename": "gspn.rst",
"kernelspec": {
"display_name": "Python",
"language": "python3",
"name": "python3"
},
"title": "Stormpy.gspn"
},
"nbformat": 4,
"nbformat_minor": 4
}