summaryrefslogtreecommitdiff
path: root/lib/automata.py
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2019-07-22 09:24:55 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2019-07-22 09:24:55 +0200
commitac49f53902d5b5229d691165762a8f419e07e687 (patch)
tree047b4290978283725808cee9134300f916c7eb5f /lib/automata.py
parent2db4b6967b367982515fa6b731abbd549cc5720e (diff)
automata: Clarify parameter contents in DFS traces
Diffstat (limited to 'lib/automata.py')
-rwxr-xr-xlib/automata.py18
1 files changed, 16 insertions, 2 deletions
diff --git a/lib/automata.py b/lib/automata.py
index 8a0357a..e8d9af5 100755
--- a/lib/automata.py
+++ b/lib/automata.py
@@ -490,8 +490,22 @@ class PTA:
Return a generator object for depth-first search starting at orig_state.
arguments:
- depth -- search depth
- orig_state -- initial state for depth-first search
+ depth: search depth
+ orig_state: initial state for depth-first search
+ param_dict: initial parameter values
+ with_arguments: perform dfs with argument values
+ with_parameters: include parameters in trace?
+
+ The returned generator emits traces. Each trace consts of a list of
+ tuples describing the corresponding transition and (if enabled)
+ arguments and parameters. When both with_arguments and with_parameters
+ are True, each transition is a (Transition object, argument list, parameter dict) tuple.
+
+ Note that the parameter dict refers to parameter values _after_
+ passing the corresponding transition. Although this may seem odd at
+ first, it is useful when analyzing measurements: Properties of
+ the state following this transition may be affected by the parameters
+ set by the transition, so it is useful to have those readily available.
"""
if with_parameters and not param_dict:
param_dict = self.get_initial_param_dict()