Open
Description
One general problem we're having in comparing algorithms to one another is that algorithms that basically should return a GeneralGraph return it in different ways. So for instance, the way to get a graph from PC is different from the way one gets it from FCI or from GES. Is it possible to make this uniform with the same syntax?
Basically one should be able to write something like this (I think):
G = search_algorithm(data, ...)
uniformly, or perhaps
G = search_algorithm(data,...).G
maybe, but uniformly for all algorithms, it seems.