src/Tools/Metis/src/problems.sml
changeset 42102 fcfd07f122d4
parent 39502 cffceed8e7fa
child 72004 913162a47d9f
--- a/src/Tools/Metis/src/problems.sml	Thu Mar 24 17:49:27 2011 +0100
+++ b/src/Tools/Metis/src/problems.sml	Thu Mar 24 17:49:27 2011 +0100
@@ -22,7 +22,7 @@
   fun mkProblem collection description (problem : problem) : problem =
       let
         val {name,comments,goal} = problem
-        val comments = if null comments then [] else "" :: comments
+        val comments = if List.null comments then [] else "" :: comments
         val comments = "Description: " ^ description :: comments
         val comments = mkCollection collection :: comments
       in
@@ -33,7 +33,7 @@
       Useful.mem (mkCollection collection) comments;
 
   fun mkProblems collection description problems =
-      map (mkProblem collection description) problems;
+      List.map (mkProblem collection description) problems;
 end;
 
 (* ========================================================================= *)