tuned signature;
authorwenzelm
Mon, 09 Oct 2017 21:12:22 +0200
changeset 66822 4642cf4a7ebb
parent 66821 c0e8c199cb2e
child 66823 f529719cc47d
tuned signature;
src/Pure/Thy/sessions.scala
src/Pure/Tools/build.scala
--- a/src/Pure/Thy/sessions.scala	Mon Oct 09 20:26:02 2017 +0200
+++ b/src/Pure/Thy/sessions.scala	Mon Oct 09 21:12:22 2017 +0200
@@ -116,7 +116,7 @@
     overall_syntax: Outer_Syntax = Outer_Syntax.empty,
     imported_sources: List[(Path, SHA1.Digest)] = Nil,
     sources: List[(Path, SHA1.Digest)] = Nil,
-    session_graph: Graph_Display.Graph = Graph_Display.empty_graph,
+    session_graph_display: Graph_Display.Graph = Graph_Display.empty_graph,
     errors: List[String] = Nil,
     imports: Option[Base] = None)
   {
@@ -253,7 +253,7 @@
                 progress, overall_syntax.keywords, check_keywords, theory_files)
             }
 
-            val session_graph: Graph_Display.Graph =
+            val session_graph_display: Graph_Display.Graph =
             {
               def session_node(name: String): Graph_Display.Node =
                 Graph_Display.Node("[" + name + "]", "session." + name)
@@ -303,7 +303,7 @@
                 overall_syntax = overall_syntax,
                 imported_sources = check_sources(imported_files),
                 sources = check_sources(session_files),
-                session_graph = session_graph,
+                session_graph_display = session_graph_display,
                 errors = thy_deps.errors ::: sources_errors,
                 imports = Some(imports_base))
 
--- a/src/Pure/Tools/build.scala	Mon Oct 09 20:26:02 2017 +0200
+++ b/src/Pure/Tools/build.scala	Mon Oct 09 21:12:22 2017 +0200
@@ -198,7 +198,7 @@
       }
 
     private val graph_file = Isabelle_System.tmp_file("session_graph", "pdf")
-    isabelle.graphview.Graph_File.write(options, graph_file, deps(name).session_graph)
+    isabelle.graphview.Graph_File.write(options, graph_file, deps(name).session_graph_display)
 
     private val future_result: Future[Process_Result] =
       Future.thread("build") {