Settings#

Settings for the PhaseGen application.

class Settings[source]#

Bases: object

flatten_block_counting: bool = True#

Whether to flatten the block-counting state space when possible. In certain cases, this can be achieved by computing block probabilities and adjusting the rewards of the lineage-counting state space accordingly. This can substantially speed up computations.

use_pbar: bool = False#

Whether to show a progress bar for certain operations such as state space generation.

parallelize: bool = False#

Whether to parallelize phase-type computations across multiple CPU cores. This may improve performance in some cases, but can also be detrimental due to inter-process data copying and can lead to hanging processes.

regularize: bool = True#

Whether to regularize the intensity matrix for numerical stability.

cache_epochs: bool = True#

Whether to cache the rate matrix for different epochs which increases performance.

static set_pbar(enabled: bool = True)[source]#

Context manager to temporarily enable or disable the progress bar.