[ENH] Add the ability to find Proper Possibly Directed Paths
Add the ability to find Proper Possibly Directed Paths to allow integration with DoWhy.
Fixes #111
Changes proposed in this pull request:
- Add the necessary functions to find Proper Possibly Directed Paths in a Graph.
Before submitting
- [ ] I've read and followed all steps in the Making a pull request
section of the
CONTRIBUTINGdocs. - [ ] I've updated or added any relevant docstrings following the syntax described in the
Writing docstrings section of the
CONTRIBUTINGdocs. - [ ] If this PR fixes a bug, I've added a test that will fail without my fix.
- [ ] If this PR adds a new feature, I've added tests that sufficiently cover my new functionality.
After submitting
- [ ] All GitHub Actions jobs for my pull request have passed.
The CIs should now work. You can also test locally ofc with pytest.
@adam2392 I have completed the implementation and it seems to be correct. However, there is one problem. The output is a list of dictionaries. And the dictionaries can be in any order inside the list which is why the test may fail right now. How do I compare them in an order agnostic way?
I know the brute force way which is to compare every element of the expected output to every element of the actual output. Was wondering if there is a better way.
Is there any inspiration from network's method for testing all_simple_paths?
https://github.com/networkx/networkx/blob/main/networkx/algorithms/tests/test_simple_paths.py
They are returning a set of tuples. I am assuming the order of tuples inside a set won't matter during comparison because of it's hashibality. However, I cannot store dictionaries inside sets. Either I change my implementation to store paths in sets(tuple()) or I can do the tests using the brute force method I described above.
What do you want me to do?
Is there any technical reason to do dictionaries instead of triples that I'm missing?
Sorry for the late reply.
Is there any technical reason to do dictionaries instead of triples that I'm missing?
Not really, I just did not think of using tuples at the time. I think it would be easy to go from List<Dict> to Set<Tuples>. A better approach in terms of memory as well.
@adam2392 I just realised, since in this implementation, all the first nodes of all the paths are in X, this finds all the proper possibly directed paths, doesn't it?
Perhaps it's easier to implement just the function wrt a single node rather than a set of nodes. Do we need the functionality with X as a set? Wdyt?
The paper assumes everywhere that X will be a set. And the current implementation already covers and tests X being a set. It seems to me that changing the implementation now to only support a single node in X would be wasted effort.
@adam2392 I just realised, since in this implementation, all the first nodes of all the paths are in X, this finds all the proper possibly directed paths, doesn't it?
Yes I believe so.
@adam2392 I believe the PR is complete. Can you do one last round of review? (PS. The failing test is due to some environment issue with some existing test)
@adam2392 I have incorporated all of your suggestions. Can you take another look?
Done!
@adam2392 This can be optimised further by switching to a stack based implementation rather than recursion. We can add this to the TODO list.
Thanks @aryan26roy !