2008-03-07 01:29:30 -05:00
|
|
|
USING: digraphs kernel sequences tools.test ;
|
|
|
|
IN: digraphs.tests
|
|
|
|
|
|
|
|
: test-digraph ( -- digraph )
|
|
|
|
<digraph>
|
2008-09-30 20:57:15 -04:00
|
|
|
{ { "one" 1 } { "two" 2 } { "three" 3 } { "four" 4 } { "five" 5 } }
|
|
|
|
[ first2 pick add-vertex ] each
|
|
|
|
{ { "one" "three" } { "one" "four" } { "two" "three" } { "two" "one" } { "three" "four" } }
|
|
|
|
[ first2 pick add-edge ] each ;
|
2008-03-07 01:29:30 -05:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ 5 } [ test-digraph topological-sort length ] unit-test
|