{"id":21665896,"url":"https://github.com/triska/scc","last_synced_at":"2026-01-04T02:51:10.862Z","repository":{"id":21558649,"uuid":"24878391","full_name":"triska/scc","owner":"triska","description":"Strongly Connected Components of a Graph","archived":false,"fork":false,"pushed_at":"2020-04-13T22:15:23.000Z","size":5,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-25T08:09:30.743Z","etag":null,"topics":["graph","prolog","scc","tarjan-algorithm"],"latest_commit_sha":null,"homepage":"https://www.metalevel.at/scc.pl","language":"Prolog","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/triska.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-07T05:50:19.000Z","updated_at":"2024-08-22T03:23:51.000Z","dependencies_parsed_at":"2022-07-23T09:46:56.739Z","dependency_job_id":null,"html_url":"https://github.com/triska/scc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/triska%2Fscc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/triska%2Fscc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/triska%2Fscc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/triska%2Fscc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/triska","download_url":"https://codeload.github.com/triska/scc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244563621,"owners_count":20472892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["graph","prolog","scc","tarjan-algorithm"],"created_at":"2024-11-25T11:18:32.297Z","updated_at":"2026-01-04T02:51:10.806Z","avatar_url":"https://github.com/triska.png","language":"Prolog","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\nRelation between a graph and its Strongly Connected Components (SCCs).\n\nUsage:\n\n    nodes_arcs_sccs(+Ns, +As, -SCCs)\n\nwhere:\n\n* `Ns` is a list of nodes. Each node must be a ground term.\n* `As` is a list of `arc(From,To)` terms where `From` and `To` are nodes.\n* `SCCs` is a list of lists of nodes that are in the same strongly\n  connected component.\n\nRunning time is `O(|V| + log(|V|)*|E|)`.\n\nExample:\n\n```\n?- nodes_arcs_sccs([a,b,c,d], [arc(a,b),arc(b,a),arc(b,c)], SCCs).\nSCCs = [[a,b],[c],[d]].\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftriska%2Fscc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftriska%2Fscc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftriska%2Fscc/lists"}