libisabelle-protocol/libisabelle/operations/Basic.thy
author Walther Neuper <wneuper@ist.tugraz.at>
Tue, 04 Sep 2018 14:50:30 +0200
changeset 59469 5c56f14bea53
permissions -rw-r--r--
Isabelle2017->18: add libisabelle, PROBLEM with session management:

/usr/local/isabisac/src/Tools/jEdit/dist/jars/Isabelle-jEdit.jar:
Cannot start:
*** Duplicate theory "Protocol.Protocol" vs. "/usr/local/isabisac/libisabelle-protocol/libisabelle/protocol/Protocol.thy"
     1 theory Basic
     2 imports "../protocol/Protocol"
     3 begin
     4 
     5 operation_setup (auto) ping = \<open>fn () => ()\<close>
     6 
     7 operation_setup (auto) hello = \<open>fn data => "Hello " ^ data\<close>
     8 
     9 operation_setup (sequential, bracket, auto) use_thys = \<open>List.app Thy_Info.use_thy\<close>
    10 
    11 end