From 18596ef71bedd24a3f0a6175ec7cd9dad5755c0a Mon Sep 17 00:00:00 2001 From: Aryan Roy Date: Thu, 22 Jun 2023 20:52:56 +0530 Subject: [PATCH] Better explanation Signed-off-by: Aryan Roy --- examples/intro/inducing_path.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/intro/inducing_path.py b/examples/intro/inducing_path.py index 7bb229e0..6b912e09 100644 --- a/examples/intro/inducing_path.py +++ b/examples/intro/inducing_path.py @@ -79,7 +79,8 @@ # this returns False print(pywhy_graphs.inducing_path(G, "X1", "X3", L, S)) -# We need to add X6, a collider on the path, to S +# We need to add X6, which will open up paths +# including all the collider ancestors of X6 L = {"L1", "L2", "X3"} S = {"X6"}