Skip to content

Commit

Permalink
requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasbtnfr committed Mar 21, 2023
1 parent 44adfec commit d6ff57c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions skmine/periodic/pattern.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,16 @@ def codeLengthE(E):


def draw_pattern(json_pattern):
"""
Parameters
----------
json_pattern
Returns
-------
"""
graph = graphviz.Digraph("graph", filename="process.gv", engine="dot")
return draw_pattern_rec(graph, json_pattern, id_to_pr_event=None, id=0, id_parent=-1, distance=(-1, -1))

Expand Down

0 comments on commit d6ff57c

Please sign in to comment.