@@ -229,6 +229,8 @@ class SuccessionDiagramConfiguration(TypedDict):
229229 intersect negative cycles to find an NFVS subset. Typically,
230230 for smaller networks, the trade-off is in favor of
231231 computing a smaller NFVS.
232+
233+ [Default: 2_000]
232234 """
233235
234236 pint_goal_size_limit : int
@@ -242,19 +244,25 @@ class SuccessionDiagramConfiguration(TypedDict):
242244 The default value was empirically tested as safe on Debian linux, but other operating
243245 systems may need a different limit to stay safe. Nevertheless, this should not be
244246 an issue on smaller/simpler networks.
247+
248+ [Default: 8_192]
245249 """
246250
247251 attractor_candidates_limit : int
248252 """
249253 If more than `attractor_candidates_limit` states are produced during the
250254 attractor detection process, then the process fails with a `RuntimeError`.
251255 This is mainly to avoid out-of-memory errors or crashing `clingo`.
256+
257+ [Default: 100_000]
252258 """
253259
254260 retained_set_optimization_threshold : int
255261 """
256262 If there are more than this amount of attractor candidates, the attractor
257263 detection process will try to optimize the retained set using ASP (if enabled).
264+
265+ [Default: 1_000]
258266 """
259267
260268 minimum_simulation_budget : int
@@ -269,4 +277,16 @@ class SuccessionDiagramConfiguration(TypedDict):
269277 However, this budget only applies when simulation has not been able to make progress
270278 in the recent round. That is, if simulation has actively eliminated some candidates in
271279 the recent round, it will still continue regardless of the budget limit.
280+
281+ [Default: 1_000]
282+ """
283+
284+ auto_expand_source_nodes : bool
285+ """
286+ When `biobalm` detects that the network has source nodes, it expands them all simultaneously,
287+ instead of expanding them one by one. This is useful for networks with many source nodes,
288+ because it produces a much smaller succession diagram without losing any "interesting" behavior.
289+ However, this setting needs to be disabled if only specific source nodes are to be expanded.
290+
291+ [Default: True]
272292 """
0 commit comments