src/Pure/Thy/thy_load.scala
author wenzelm
Tue, 05 Jul 2011 22:39:15 +0200
changeset 44548 29eb1cd29961
parent 44528 511df47bcadc
child 45038 9a35e88d9dc9
permissions -rw-r--r--
Thy_Info.dependencies: ignore already loaded theories, according to initial prover session status;
     1 /*  Title:      Pure/Thy/thy_load.scala
     2     Author:     Makarius
     3 
     4 Loading files that contribute to a theory.
     5 */
     6 
     7 package isabelle
     8 
     9 abstract class Thy_Load
    10 {
    11   def is_loaded(name: String): Boolean
    12 
    13   def check_thy(dir: Path, name: String): (String, Thy_Header.Header)
    14 }
    15