Giter Site home page Giter Site logo

Comments (9)

snowleopard avatar snowleopard commented on June 23, 2024 1

No problem :) I'll keep the issue open, to remember to add a few methods to ToGraph class. I guess, we'll need to add not just isAcyclic but also topSort, dfs, etc.

from alga.

fosskers avatar fosskers commented on June 23, 2024 1

Holy crap that's fantastic. I'm going to try that out right away.

from alga.

snowleopard avatar snowleopard commented on June 23, 2024 1

@fosskers Great! I'll keep this issue open -- isAcyclic seems like a useful function to add to the API.

from alga.

snowleopard avatar snowleopard commented on June 23, 2024

@fosskers Thanks! I agree, this is a useful function to add. If you don't necessarily need a polymorphic function, the implementation is quite simple:

isDag :: Ord a => AdjacencyMap a -> Bool
isDag = isJust . topSort

You'll just need to convert your graph data type to AdjacencyMap.

With the new ToGraph type class (coming soon in algebraic-graphs-0.2), I believe we could even add it as a separate method, giving you isAcyclic :: (ToGraph g, Ord (ToVertex g)) => g -> Bool.

from alga.

fosskers avatar fosskers commented on June 23, 2024

Ah ha! So it was just a simple thing. And luckily for me, I'm already using AdjacencyMap.

From the Haddocks:

Compute the topological sort of a graph or return Nothing if the graph is cyclic.

Perhaps I should have used my eyes to read 😢

from alga.

fosskers avatar fosskers commented on June 23, 2024

So isJust . topSort tells us if there's a cycle, which by itself is still very useful. Would it be hard to report the values of the vertices that are causing the cycle?

from alga.

snowleopard avatar snowleopard commented on June 23, 2024

@fosskers To find the cycle, you can use the scc function. It returns you a graph whose vertices are strongly-connected components, and if any component contains more than a single vertex it is a cycle.

Here is one possible way to use is:

cycles :: Ord a => AdjacencyMap a -> [AdjacencyMap a]
cycles x = [ induce (`Set.member` c) x | c <- cs ]
  where
    cs = filter (\c -> Set.size c > 1) $ vertexList (scc x)

We obtain the list cs which contains non-singleton components (i.e. cyclic subgraphs), and then compute corresponding induced subgraphs of the original graph. As a result you can see all cycles in isolation.

For example:

> cycles $ path [1, 2, 3]
[]

> cycles $ circuit [1, 2, 3]
[edges [(1,2),(2,3),(3,1)]]

> cycles $ circuit [1, 2, 3] + path [3, 4, 5] + circuit [5, 6, 7]
[edges [(1,2),(2,3),(3,1)],edges [(5,6),(6,7),(7,5)]]

from alga.

fosskers avatar fosskers commented on June 23, 2024

Alright, looking good! Thanks a lot, once again.

from alga.

fosskers avatar fosskers commented on June 23, 2024

Woops, my bad.

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.