Giter Site home page Giter Site logo

Non empty graphs about alga HOT 3 CLOSED

snowleopard avatar snowleopard commented on September 24, 2024
Non empty graphs

from alga.

Comments (3)

phadej avatar phadej commented on September 24, 2024 1

A side note, Data.Map.Strict.Map and Data.Map.Lazy.Map are the same datatype! (only functions differ).

I'd prefer to have different names for the types, as the functions will be the same, thanks to the type class machinery,

from alga.

snowleopard avatar snowleopard commented on September 24, 2024

Perhaps, a slightly better approach would be to stick to the name Graph, but use module names to distinguish between general and non-empty graphs?

More specifically:

module Algebra.Graph.NonEmpty (Graph (..)) where

data Graph a = Vertex a
             | Overlay (Graph a) (Graph a)
             | Connect (Graph a) (Graph a)

Now, if one would like to be explicit about the data type, it's possible to write NonEmpty.Graph. And if non-empty graphs are assumed throughout the codebase, then a simple Graph will work.

This is similar to Data.Map.Strict and Data.Map.Lazy that both definine data type Map.

Following this approach we can also have Undirected.Graph, Reflexive.Graph, Undirected.NonEmpty.Graph etc. without the need to invent longer and longer names for various graph data-types.

from alga.

snowleopard avatar snowleopard commented on September 24, 2024

Done!

@phadej Thanks for the suggestion and let me know if you spot any issues with the implementation.

I decided not to add a type class for non-empty graphs for now. I think it deserves a new issue.

from alga.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.