A Lean Machine-to-Machine Interface
Go to file
Leni Aniva 8127e9ba06 Add alternative command input format and IO stub 2023-05-20 13:03:12 -07:00
Examples Add alternative command input format and IO stub 2023-05-20 13:03:12 -07:00
Pantograph Add alternative command input format and IO stub 2023-05-20 13:03:12 -07:00
.gitignore Initial commit 2023-05-07 15:19:45 -07:00
Main.lean Add alternative command input format and IO stub 2023-05-20 13:03:12 -07:00
Pantograph.lean Add unsafe filtering in catalog 2023-05-12 16:12:21 -07:00
README.md Add alternative command input format and IO stub 2023-05-20 13:03:12 -07:00
lakefile.lean Add alternative command input format and IO stub 2023-05-20 13:03:12 -07:00
lean-toolchain Initial commit 2023-05-07 15:19:45 -07:00

README.md

Pantograph

An interaction system for Lean 4.

Installation

Install elan and lean4. Then, execute

lake build

In order to use mathlib, its binary must also be built

lake build Qq
lake build aesop
lake build std
lake build mathlib

Usage

The binary must be run inside a lake env environment. i.e. lake env build/bin/pantograph. The REPL loop accepts commands and outputs either an Error: (indicating malformed command) or a json return value indicating the result of a command execution. The command can be passed in one of two formats

command { ... }
{ "cmd": command, "payload": ... }

Example: (~5k symbols)

$ lake env build/bin/Pantograph
create {"imports": ["Init"]}
catalog {"id": 0}

Example with mathlib (~90k symbols)

$ lake env build/bin/Pantograph
create {"imports": ["Mathlib.Analysis.Seminorm"]}
catalog {"id": 0}

Troubleshooting

If lean encounters stack overflow problems when printing catalog, execute this before running lean:

ulimit -s unlimited