|
from backend.analysis.cause_graph import CauseGraphEngine
|
|
|
|
|
|
def explain_node(cause_graph: CauseGraphEngine, node, action=None):
|
|
return cause_graph.explain(node, action)
|
|
|
|
|
|
def full_cause_trace(cause_graph: CauseGraphEngine):
|
|
return cause_graph.full_trace()
|