-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optional methods for Graph type class #4
Comments
The I think there is potential value in putting a small number of carefully chosen operations in the class, which can be implemented 100% generically, but for certain classes of graph are vastly more efficient. The other option is to say they are only implemented in a few choice data types, typically imported qualified, and people are expected to convert. |
@ndmitchell Shall we list the candidates here? I'm starting to think that there are not that many of them. The Is there any other candidate to bring N above 1? :) P.S.: For various newtype's like |
If the type class changes as I suggest in #5 then most of these objections change in nature - so I suggest we resolve that before coming back to this. |
After a lot of refactoring, we ended up with the API where each See: http://hackage.haskell.org/package/algebraic-graphs/docs/Algebra-Graph.html Making all of them part of the core type class seems to be an overkill. I guess we can close this issue for now. If there is a proposal to create a more feature-rich type class, with complete graph manipulation API (say, as defined in |
The current definition of the
Graph
type class is very minimalistic:I like the minimalism, because it makes the library very simple.
However, for the sake of efficiency, it may useful to add optional methods to the type class, such as:
We already have an implementation (see
Algebra.Graph.Util
), which we could try to make the default (although it seems tricky). It works in O(n) time, where n is the size of the algebraic expression, and some instances could provide faster implementations by overriding theremoveVertex
method.What are the pros and cons?
Good: the user of the library doesn't have to think when calling
removeVertex
-- the fastest available implementation will be called, depending on the specific instance.Bad: reasoning about performance may become harder. At the moment we know that
removeVertex
runs in O(n) time. If it becomes a class method, polymorphic code will have unpredictable performance characteristics.Bad: the type class becomes heavier and more difficult to understand. When do we stop? There are many graph transformation primitives -- do we have to add them all to the type class?
Bad: what if a graph instance provides more than one implementation of
removeVertex
with different characteristics? Which one do we choose?A possible alternative: use additional type classes to specify performance constraints. For example:
Now you can demand graph data structures with particular performance characteristics via the type signature.
/cc @ndmitchell
The text was updated successfully, but these errors were encountered: