Packages

  • package root
    Definition Classes
    root
  • package de
    Definition Classes
    root
  • package unruh
    Definition Classes
    de
  • package isabelle

    This library allows to control an Isabelle process from a Scala application.

    This library allows to control an Isabelle process from a Scala application. For first steps and pointers, see the README.

    In case of missing/incorrect documentation, create an issue.

    Definition Classes
    unruh
  • package control

    This package contains classes for instantiating and controlling an Isabelle process.

    This package contains classes for instantiating and controlling an Isabelle process. The main class is Isabelle, see there for documentation. Controlling the process via the classes in this package is quite low-level. See mlvalue.MLValue for a higher level mechanism.

    Definition Classes
    isabelle
  • package java

    This package provides methods for making access to scala-isabelle possible from Java (or other non-Scala JVM languages).

    This package provides methods for making access to scala-isabelle possible from Java (or other non-Scala JVM languages).

    It does not provide any new functionality but only various wrapper methods for cases where some of the methods in this library are hard to access from Java. (E.g., when a method expects Scala collections as input.)

    For Scala methods that need but lack a wrapper, please file an issue.

    Definition Classes
    isabelle
  • package misc
    Definition Classes
    isabelle
  • FutureValue
  • SMLCodeUtils
  • SharedCleaner
  • Symbols
  • Utils
  • package mlvalue

    This package contains classes for type safe manipulation of values stored in a running Isabelle process (managed by an instance of control.Isabelle).

    This package contains classes for type safe manipulation of values stored in a running Isabelle process (managed by an instance of control.Isabelle). See MLValue for an introduction.

    Definition Classes
    isabelle
  • package pure

    This package contains classes for operating on Isabelle theories (Theory), contexts (Context), typs (Typ), term (Term), theorems (Thm).

    This package contains classes for operating on Isabelle theories (Theory), contexts (Context), typs (Typ), term (Term), theorems (Thm). (Only things that are independent of a specific object logic, i.e., only things in Isabelle/Pure.)

    Definition Classes
    isabelle

package misc

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. trait FutureValue extends AnyRef

    Common trait for all classes that exhibit a future-like behavior.

    Common trait for all classes that exhibit a future-like behavior. That is, they contain a value that may not yet have been computed, and that may still throw exceptions. But unlike for Future, no methods are provided for extracting that value, only to wait for it.

  2. class Symbols extends AnyRef

    To encode non-ASCII characters ("symbols") in strings, Isabelle uses a proprietary encoding which encodes a symbol as a substring \<name> where name is the name of the substring.

    To encode non-ASCII characters ("symbols") in strings, Isabelle uses a proprietary encoding which encodes a symbol as a substring \<name> where name is the name of the substring. (Thus, strings containing symbols are ASCII strings.) There is a loose correspondence between symbols and Unicode codepositions that is documented in a machine readable format in etc/symbols in the Isabelle distribution. This class translates between Isabelle's encoding and Unicode strings.

    If the default values for this class's constructor are appropriate, consider using the static functions Symbols.symbolsToUnicode and Symbols.unicodeToSymbols instead of instantiating this class.

Value Members

  1. object SMLCodeUtils
  2. object SharedCleaner
  3. object Symbols
  4. object Utils

    Contains miscellaneous utility functions

Ungrouped