GithubHelp home page GithubHelp logo

isabella232 / ouroboros Goto Github PK

View Code? Open in Web Editor NEW

This project forked from oniietzschan/ouroboros

0.0 0.0 0.0 14 KB

Topological sorting in Lua. Simple cycle resolution functionality.

Lua 100.00%

ouroboros's Introduction

ouroboros

Build Status Codecov Lua Versions Might Makes Right

Topological sorting in Lua. Simple cycle resolution functionality.

Basic Example

local Ouroboros = require "ouroboros"

local graph = Ouroboros.new()
  :add('b', 'e')
  :add('b', 'c', 'd')
  :add('d', 'e')
  :add('a', 'b')

local sorted = graph:sort()
print((require "serpent").line(sorted))
-- {'a', 'b', 'c', 'd', 'e'}

Cycle Resolution Example

local Ouroboros = require "ouroboros"

local konata = {name = 'Konata', moePoints =  5000}
local renge  = {name = 'Renge',  moePoints = 10000}
local umaru  = {name = 'Umaru',  moePoints =     0}

-- This graph has a cycle: konata -> renge -> umaru -> konata -> ...
local graph = Ouroboros.new()
  :add(konata, renge)
  :add(renge, umaru)
  :add(umaru, konata)

-- graph:sort() can take a function which it will consult in order to decide
-- which dependency should be severed in order to make the graph acyclic again.
local function resolveCycleFn(cycle)
  local worstGirl = nil
  local leastMoe = math.huge
  for i, girl in ipairs(cycle) do
    if girl.moePoints < leastMoe then
      leastMoe = girl.moePoints
      worstGirl = girl
    end
  end
  return worstGirl
end

local sorted, err = graph:sort(resolveCycleFn)

print((require "serpent").block(sorted))
-- {
--   {
--     name = "Konata",
--     moePoints = 5000
--   },
--   {
--     name = "Renge",
--     moePoints = 10000
--   },
--   {
--     name = "Umaru",
--     moePoints = 0
--   }
-- }

print(err)
-- Resolved 1 cycle(s) during topological sort.

ouroboros's People

Contributors

oniietzschan avatar

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.