thm_deps: sort result;
authorwenzelm
Mon, 25 Feb 2008 19:48:06 +0100
changeset 26138dc578de1d3e9
parent 26137 9b47c8a2d869
child 26139 f7823a676ef7
thm_deps: sort result;
src/Pure/Thy/thm_deps.ML
     1.1 --- a/src/Pure/Thy/thm_deps.ML	Mon Feb 25 19:38:48 2008 +0100
     1.2 +++ b/src/Pure/Thy/thm_deps.ML	Mon Feb 25 19:48:06 2008 +0100
     1.3 @@ -68,8 +68,8 @@
     1.4  
     1.5  fun thm_deps thms =
     1.6    Present.display_graph
     1.7 -    (map snd (Symtab.dest (fst
     1.8 -      (fold make_deps_graph (map Thm.proof_of thms) (Symtab.empty, [])))));
     1.9 +    (map snd (sort_wrt fst (Symtab.dest (fst
    1.10 +      (fold make_deps_graph (map Thm.proof_of thms) (Symtab.empty, []))))));
    1.11  
    1.12  end;
    1.13