Packages

  • package root
    Definition Classes
    root
  • package provingground

    This is work towards automated theorem proving based on learning, using homotopy type theory (HoTT) as foundations and natural language processing.

    This is work towards automated theorem proving based on learning, using homotopy type theory (HoTT) as foundations and natural language processing.

    The implementation of homotopy type theory is split into:

    • the object HoTT with terms, types, functions and dependent functions, pairs etc
    • the package induction with general inductive types and recursion/induction on these.

    The learning package has the code for learning.

    Scala code, including the spire library, is integrated with homotopy type theory in the scalahott package

    We have implemented a functor based approach to translation in the translation package, used for nlp as well as serialization and parsing.

    The library package is contains basic structures implemented in HoTT.

    Definition Classes
    root
  • package translation

    Translation primarily using a functorial framework - see Translator$, for natural language processing as well as serialization, formatted output, parsing, interface with formal languages etc.

    Translation primarily using a functorial framework - see Translator$, for natural language processing as well as serialization, formatted output, parsing, interface with formal languages etc.

    Besides the Translator framework and helper typeclasses is Functors, several structures for concrete languages including our implementation of HoTT are in this package.

    Definition Classes
    provingground
  • object FreeExpr
    Definition Classes
    translation
  • AnonVar
  • FF
  • FreeAppln
  • FreeEquality
  • FreeIncl1
  • FreeIncl2
  • FreeLambda
  • FreeLang
  • FreePair
  • FreePi
  • FreeProj1
  • FreeProj2
  • FreeSigma
  • FromTerm
  • MetaVar
  • Numeral
  • Or
  • OrCases
  • QED
  • Special
  • TT
  • TypVariable
  • Univ
  • Variable

implicit object FreeLang extends ExprLang[FreeExpr] with ExprPatterns[FreeExpr]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FreeLang
  2. ExprPatterns
  3. ExprLang
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def anonVar(typ: FreeExpr): Option[FreeExpr]

    anonymous variable

    anonymous variable

    Definition Classes
    FreeLangExprLang
  5. def appln(func: FreeExpr, arg: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  6. def applyAll(funcOpt: Option[FreeExpr], args: Vector[FreeExpr]): Option[FreeExpr]
    Definition Classes
    ExprLang
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equality(lhs: FreeExpr, rhs: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def ff: Option[FreeExpr]

    false type

    false type

    Definition Classes
    FreeLangExprLang
  13. def funcTyp(dom: FreeExpr, codom: FreeExpr): Option[FreeExpr]
    Definition Classes
    ExprLang
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def i1(typ: FreeExpr, value: FreeExpr): Option[FreeExpr]
    Definition Classes
    ExprLang
  17. def i2(typ: FreeExpr, value: FreeExpr): Option[FreeExpr]
    Definition Classes
    ExprLang
  18. def incl1(typ: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  19. def incl2(typ: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def isPair: (FreeExpr) => Option[(FreeExpr, FreeExpr)]
    Definition Classes
    FreeLangExprPatterns
  22. def isPi: (FreeExpr) => Option[(FreeExpr, FreeExpr)]
    Definition Classes
    FreeLangExprPatterns
  23. def isSigma: (FreeExpr) => Option[(FreeExpr, FreeExpr)]
    Definition Classes
    FreeLangExprPatterns
  24. def lambda(variable: FreeExpr, value: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  25. def metaVar(typ: FreeExpr): Option[FreeExpr]

    meta-variable of a given type, i.e., whose value must be inferred (elaborated in lean's terminology).

    meta-variable of a given type, i.e., whose value must be inferred (elaborated in lean's terminology).

    Definition Classes
    FreeLangExprLang
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. def numeral(n: Int): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  30. def or(first: FreeExpr, second: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  31. def orCases(first: FreeExpr, second: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  32. def pair(x: FreeExpr, y: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  33. def pairTyp(first: FreeExpr, second: FreeExpr): Option[FreeExpr]

    non-dependent pair built from abstract methods.

    non-dependent pair built from abstract methods.

    Definition Classes
    ExprLang
  34. def pi(variable: FreeExpr, typ: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  35. def proj1(xy: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  36. def proj2(xy: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  37. def qed: Option[FreeExpr]

    element of true type

    element of true type

    Definition Classes
    FreeLangExprLang
  38. def sigma(variable: FreeExpr, typFamily: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  39. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def tt: Option[FreeExpr]

    true type

    true type

    Definition Classes
    FreeLangExprLang
  42. def typVariable[S](name: S, level: Int): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  43. def variable[S](name: S, typ: FreeExpr): Option[FreeExpr]
    Definition Classes
    FreeLangExprLang
  44. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  45. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from ExprPatterns[FreeExpr]

Inherited from ExprLang[FreeExpr]

Inherited from AnyRef

Inherited from Any

Ungrouped