1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
digraph tests/graph2 {
graph [ratio=0.5]
node [style=filled]
Test_Permutation_app_swap [label="Permutation_app_swap", URL=<Test.html#Permutation_app_swap>, peripheries=3, fillcolor="#7FFFD4"] ;
Test_Permutation_sym [label="Permutation_sym", URL=<Test.html#Permutation_sym>, fillcolor="#7FFFD4"] ;
Test_app_nil_end [label="app_nil_end", URL=<Test.html#app_nil_end>, fillcolor="#7FFFD4"] ;
Test_app_comm_cons [label="app_comm_cons", URL=<Test.html#app_comm_cons>, fillcolor="#7FFFD4"] ;
Test_Permutation_refl [label="Permutation_refl", URL=<Test.html#Permutation_refl>, fillcolor="#7FFFD4"] ;
Test_list_ind [label="list_ind", URL=<Test.html#list_ind>, fillcolor="#7FFFD4"] ;
_eq_ind [label="eq_ind", URL=<.html#eq_ind>, fillcolor="#7FFFD4"] ;
_eq_ind_r [label="eq_ind_r", URL=<.html#eq_ind_r>, fillcolor="#7FFFD4"] ;
Test_Permutation_trans [label="Permutation_trans", URL=<Test.html#Permutation_trans>, fillcolor="#7FFFD4"] ;
Test_app [label="app", URL=<Test.html#app>, fillcolor="#F070D1"] ;
Test_Permutation [label="Permutation", URL=<Test.html#Permutation>, fillcolor="#E2CDFA"] ;
Test_list [label="list", URL=<Test.html#list>, fillcolor="#E2CDFA"] ;
Test_perm_skip [label="perm_skip", URL=<Test.html#perm_skip>, fillcolor="#7FAAFF"] ;
Test_perm_swap [label="perm_swap", URL=<Test.html#perm_swap>, fillcolor="#7FAAFF"] ;
Test_nil [label="nil", URL=<Test.html#nil>, fillcolor="#7FAAFF"] ;
Test_cons [label="cons", URL=<Test.html#cons>, fillcolor="#7FAAFF"] ;
Test_perm_trans [label="perm_trans", URL=<Test.html#perm_trans>, fillcolor="#7FAAFF"] ;
_eq_sym [label="eq_sym", URL=<.html#eq_sym>, fillcolor="#7FFFD4"] ;
_eq [label="eq", URL=<.html#eq>, fillcolor="#E2CDFA"] ;
_eq_refl [label="eq_refl", URL=<.html#eq_refl>, fillcolor="#7FAAFF"] ;
Test_perm_nil [label="perm_nil", URL=<Test.html#perm_nil>, fillcolor="#7FAAFF"] ;
Test_Permutation_ind [label="Permutation_ind", URL=<Test.html#Permutation_ind>, fillcolor="#7FFFD4"] ;
Test_Permutation_app_swap -> Test_Permutation_sym [] ;
Test_Permutation_app_swap -> Test_app_nil_end [] ;
Test_Permutation_app_swap -> Test_app_comm_cons [] ;
Test_Permutation_app_swap -> Test_Permutation_refl [] ;
Test_Permutation_app_swap -> _eq_ind_r [] ;
Test_Permutation_app_swap -> Test_Permutation_trans [] ;
Test_Permutation_sym -> Test_perm_skip [] ;
Test_Permutation_sym -> Test_perm_swap [] ;
Test_Permutation_sym -> Test_perm_trans [] ;
Test_Permutation_sym -> Test_perm_nil [] ;
Test_Permutation_sym -> Test_Permutation_ind [] ;
Test_app_nil_end -> Test_list_ind [] ;
Test_app_nil_end -> _eq_ind [] ;
Test_app_nil_end -> Test_app [] ;
Test_app_nil_end -> _eq_refl [] ;
Test_app_comm_cons -> Test_app [] ;
Test_app_comm_cons -> _eq [] ;
Test_app_comm_cons -> _eq_refl [] ;
Test_Permutation_refl -> Test_list_ind [] ;
Test_Permutation_refl -> Test_Permutation [] ;
Test_Permutation_refl -> Test_perm_skip [] ;
Test_Permutation_refl -> Test_perm_nil [] ;
Test_list_ind -> Test_list [] ;
Test_list_ind -> Test_nil [] ;
Test_list_ind -> Test_cons [] ;
_eq_ind -> _eq [] ;
_eq_ind_r -> _eq_ind [] ;
_eq_ind_r -> _eq_sym [] ;
Test_Permutation_trans -> Test_Permutation [] ;
Test_Permutation_trans -> Test_perm_trans [] ;
Test_app -> Test_list [] ;
Test_app -> Test_cons [] ;
Test_Permutation -> Test_list [] ;
Test_Permutation -> Test_nil [] ;
Test_Permutation -> Test_cons [] ;
Test_perm_skip -> Test_list [] ;
Test_perm_skip -> Test_nil [] ;
Test_perm_skip -> Test_cons [] ;
Test_perm_swap -> Test_list [] ;
Test_perm_swap -> Test_nil [] ;
Test_perm_swap -> Test_cons [] ;
Test_perm_trans -> Test_list [] ;
Test_perm_trans -> Test_nil [] ;
Test_perm_trans -> Test_cons [] ;
_eq_sym -> _eq [] ;
_eq_sym -> _eq_refl [] ;
Test_perm_nil -> Test_list [] ;
Test_perm_nil -> Test_nil [] ;
Test_perm_nil -> Test_cons [] ;
Test_Permutation_ind -> Test_Permutation [] ;
subgraph cluster_Test { label="Test"; fillcolor="#FFFFC3"; labeljust=l; style=filled
Test_Permutation_ind; Test_perm_nil; Test_perm_trans; Test_cons; Test_nil; Test_perm_swap; Test_perm_skip; Test_list; Test_Permutation; Test_app; Test_Permutation_trans; Test_list_ind; Test_Permutation_refl; Test_app_comm_cons; Test_app_nil_end; Test_Permutation_sym; Test_Permutation_app_swap; };
} /* END */
|