diff --git a/CHANGELOG.md b/CHANGELOG.md index 00fab0714..b3d48ed4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,7 +48,10 @@ * fixed divergence from Github repo * e0cbce6b90a16ef1e21edca45b83d69e1743674c * fixed typo in OCPN discovery method - +* 0af7368ce306678466df759ca15359c1e3901bcd + * fixed discover_petri_net_inductive multi_processing parameter + default value. + ### Removed * bf5574a34a31b93024dd9feb54acc5cc475640bd * change-of-mind on format_dataframe deprecation warning diff --git a/pm4py/discovery.py b/pm4py/discovery.py index 7adf35ee9..bac399e13 100644 --- a/pm4py/discovery.py +++ b/pm4py/discovery.py @@ -292,7 +292,7 @@ def discover_petri_net_alpha_plus(log: Union[EventLog, pd.DataFrame], activity_k return alpha_miner.apply(log, variant=alpha_miner.Variants.ALPHA_VERSION_PLUS, parameters=get_properties(log, activity_key=activity_key, timestamp_key=timestamp_key, case_id_key=case_id_key)) -def discover_petri_net_inductive(log: Union[EventLog, pd.DataFrame, DFG], multi_processing: bool = False, noise_threshold: float = 0.0, activity_key: str = "concept:name", timestamp_key: str = "time:timestamp", case_id_key: str = "case:concept:name") -> Tuple[ +def discover_petri_net_inductive(log: Union[EventLog, pd.DataFrame, DFG], multi_processing: bool = constants.ENABLE_MULTIPROCESSING_DEFAULT, noise_threshold: float = 0.0, activity_key: str = "concept:name", timestamp_key: str = "time:timestamp", case_id_key: str = "case:concept:name") -> Tuple[ PetriNet, Marking, Marking]: """ Discovers a Petri net using the inductive miner algorithm. diff --git a/requirements_stable.txt b/requirements_stable.txt index 25fa7f42b..87d0be2c2 100644 --- a/requirements_stable.txt +++ b/requirements_stable.txt @@ -2,7 +2,7 @@ colorama==0.4.6 contourpy==1.1.0 cycler==0.11.0 deprecation==2.1.0 -fonttools==4.41.1 +fonttools==4.42.0 graphviz==0.20.1 intervaltree==3.1.0 kiwisolver==1.4.4