-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pm4py): removed strong dependencies on intervaltree and stringdist
removed strong dependencies on intervaltree and stringdist
- Loading branch information
1 parent
32c396b
commit 53af01f
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
from pm4py.algo.conformance.alignments import decomposed, dfg, edit_distance, petri_net, process_tree | ||
from pm4py.algo.conformance.alignments import decomposed, dfg, petri_net, process_tree | ||
import pkgutil | ||
|
||
if pkgutil.find_loader("stringdist"): | ||
from pm4py.algo.conformance.alignments import edit_distance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
from pm4py.algo.transformation import log_to_trie, log_to_features, log_to_interval_tree | ||
from pm4py.algo.transformation import log_to_trie, log_to_features | ||
import pkgutil | ||
if pkgutil.find_loader("intervaltree"): | ||
from pm4py.algo.transformation import log_to_interval_tree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from pm4py.statistics import traces, attributes, variants, start_activities, end_activities, util, \ | ||
sojourn_time, concurrent_activities, eventually_follows, overlap, rework | ||
|
||
sojourn_time, concurrent_activities, eventually_follows, rework | ||
import pkgutil | ||
if pkgutil.find_loader("intervaltree"): | ||
from pm4py.statistics import overlap |