UNPKG
graphlib
Version:
latest (2.1.8)
2.1.8
2.1.7
2.1.6
2.1.5
2.1.2
2.1.1
2.1.0
2.0.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-pre1
0.9.1
0.9.0
0.8.3
0.8.2
0.8.1
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.0
0.5.12
0.5.11
0.5.10
0.5.9
0.5.8
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
0.3.3
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A directed and undirected multi-graph library
github.com/dagrejs/graphlib
dagrejs/graphlib
graphlib
/
lib
/
alg
/
is-acyclic.js
16 lines
(13 loc)
•
237 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var
topsort =
require
(
"./topsort"
);
module
.
exports
= isAcyclic;
function
isAcyclic
(
g
) {
try
{
topsort
(g); }
catch
(e) {
if
(e
instanceof
topsort.
CycleException
) {
return
false
; }
throw
e; }
return
true
; }