2023-05-09 22:51:19 -07:00
|
|
|
# Pantograph
|
|
|
|
|
2024-03-28 22:09:56 -07:00
|
|
|
A Machine-to-Machine interaction system for Lean 4.
|
2023-05-09 22:51:19 -07:00
|
|
|
|
2023-06-09 14:45:45 -07:00
|
|
|
![Pantograph](doc/icon.svg)
|
|
|
|
|
2024-03-28 22:09:56 -07:00
|
|
|
Pantograph provides interfaces to execute proofs, construct expressions, and
|
|
|
|
examine the symbol list of a Lean project for machine learning.
|
|
|
|
|
2023-05-09 22:51:19 -07:00
|
|
|
## Installation
|
|
|
|
|
2024-09-09 12:39:32 -07:00
|
|
|
For Nix users, run
|
2023-05-09 22:51:19 -07:00
|
|
|
``` sh
|
2024-09-09 12:39:32 -07:00
|
|
|
nix build .#{sharedLib,executable}
|
2023-05-09 22:51:19 -07:00
|
|
|
```
|
2024-09-09 12:39:32 -07:00
|
|
|
to build either the shared library or executable.
|
2024-04-15 19:57:05 -07:00
|
|
|
|
2024-09-09 12:39:32 -07:00
|
|
|
Install `elan` and `lake`, and run
|
2023-05-12 01:08:36 -07:00
|
|
|
``` sh
|
2024-09-09 12:39:32 -07:00
|
|
|
lake build
|
2024-04-15 19:57:05 -07:00
|
|
|
```
|
2024-09-09 12:39:32 -07:00
|
|
|
This builds the executable in `.lake/build/bin/pantograph-repl`.
|
2023-05-09 22:51:19 -07:00
|
|
|
|
2024-03-28 11:37:07 -07:00
|
|
|
## Executable Usage
|
2023-05-09 22:51:19 -07:00
|
|
|
|
2023-05-24 22:33:10 -07:00
|
|
|
``` sh
|
2023-10-02 10:26:19 -07:00
|
|
|
pantograph MODULES|LEAN_OPTIONS
|
2023-05-24 22:33:10 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
The REPL loop accepts commands as single-line JSON inputs and outputs either an
|
2023-08-24 22:51:40 -07:00
|
|
|
`Error:` (indicating malformed command) or a JSON return value indicating the
|
2023-05-24 22:33:10 -07:00
|
|
|
result of a command execution. The command can be passed in one of two formats
|
2023-05-20 13:03:12 -07:00
|
|
|
```
|
|
|
|
command { ... }
|
|
|
|
{ "cmd": command, "payload": ... }
|
|
|
|
```
|
2023-11-06 11:04:28 -08:00
|
|
|
The list of available commands can be found in `Pantograph/Protocol.lean` and below. An
|
2023-05-20 15:58:38 -07:00
|
|
|
empty command aborts the REPL.
|
2023-05-12 16:12:21 -07:00
|
|
|
|
2023-10-02 10:26:19 -07:00
|
|
|
The `pantograph` executable must be run with a list of modules to import. It can
|
2023-08-13 21:19:06 -07:00
|
|
|
also accept lean options of the form `--key=value` e.g. `--pp.raw=true`.
|
2023-05-23 05:12:46 -07:00
|
|
|
|
2023-05-12 16:12:21 -07:00
|
|
|
Example: (~5k symbols)
|
|
|
|
```
|
2023-10-02 10:26:19 -07:00
|
|
|
$ pantograph Init
|
2023-12-12 18:56:25 -08:00
|
|
|
env.catalog
|
|
|
|
env.inspect {"name": "Nat.le_add_left"}
|
2023-05-12 16:12:21 -07:00
|
|
|
```
|
2023-06-09 14:45:45 -07:00
|
|
|
Example with `mathlib4` (~90k symbols, may stack overflow, see troubleshooting)
|
2023-05-12 01:08:36 -07:00
|
|
|
```
|
2023-10-02 10:26:19 -07:00
|
|
|
$ pantograph Mathlib.Analysis.Seminorm
|
2023-12-12 18:56:25 -08:00
|
|
|
env.catalog
|
2023-05-09 22:51:19 -07:00
|
|
|
```
|
2023-08-27 19:58:52 -07:00
|
|
|
Example proving a theorem: (alternatively use `goal.start {"copyFrom": "Nat.add_comm"}`) to prime the proof
|
2023-05-21 17:41:39 -07:00
|
|
|
```
|
2023-10-02 10:26:19 -07:00
|
|
|
$ pantograph Init
|
2023-08-27 19:58:52 -07:00
|
|
|
goal.start {"expr": "∀ (n m : Nat), n + m = m + n"}
|
2023-11-06 11:04:28 -08:00
|
|
|
goal.tactic {"stateId": 0, "goalId": 0, "tactic": "intro n m"}
|
|
|
|
goal.tactic {"stateId": 1, "goalId": 0, "tactic": "assumption"}
|
|
|
|
goal.delete {"stateIds": [0]}
|
2023-08-27 19:58:52 -07:00
|
|
|
stat {}
|
2023-11-06 11:04:28 -08:00
|
|
|
goal.tactic {"stateId": 1, "goalId": 0, "tactic": "rw [Nat.add_comm]"}
|
2023-08-27 19:58:52 -07:00
|
|
|
stat
|
2023-05-21 17:41:39 -07:00
|
|
|
```
|
|
|
|
where the application of `assumption` should lead to a failure.
|
2023-05-09 22:51:19 -07:00
|
|
|
|
2024-03-28 11:37:07 -07:00
|
|
|
### Commands
|
2023-06-09 14:45:45 -07:00
|
|
|
|
2023-11-06 11:04:28 -08:00
|
|
|
See `Pantograph/Protocol.lean` for a description of the parameters and return values in JSON.
|
2024-04-15 19:57:05 -07:00
|
|
|
* `reset`: Delete all cached expressions and proof trees
|
|
|
|
* `stat`: Display resource usage
|
2024-06-11 12:44:42 -07:00
|
|
|
* `expr.echo {"expr": <expr>, "type": <optional expected type>, ["levels": [<levels>]]}`: Determine the
|
|
|
|
type of an expression and format it.
|
2024-04-15 19:57:05 -07:00
|
|
|
* `env.catalog`: Display a list of all safe Lean symbols in the current environment
|
|
|
|
* `env.inspect {"name": <name>, "value": <bool>}`: Show the type and package of a
|
2023-08-14 17:07:53 -07:00
|
|
|
given symbol; If value flag is set, the value is printed or hidden. By default
|
|
|
|
only the values of definitions are printed.
|
2024-04-15 19:57:05 -07:00
|
|
|
* `options.set { key: value, ... }`: Set one or more options (not Lean options; those
|
2023-11-06 11:04:28 -08:00
|
|
|
have to be set via command line arguments.), for options, see `Pantograph/Protocol.lean`
|
2024-09-09 12:39:32 -07:00
|
|
|
|
2024-09-09 17:29:43 -07:00
|
|
|
One particular option for interest for machine learning researchers is the
|
|
|
|
automatic mode (flag: `"automaticMode"`). By default it is turned on, with
|
|
|
|
all goals automatically resuming. This makes Pantograph act like a gym,
|
|
|
|
with no resumption necessary to manage your goals.
|
2024-04-15 19:57:05 -07:00
|
|
|
* `options.print`: Display the current set of options
|
2024-06-11 12:44:42 -07:00
|
|
|
* `goal.start {["name": <name>], ["expr": <expr>], ["levels": [<levels>]], ["copyFrom": <symbol>]}`:
|
2024-04-15 19:57:05 -07:00
|
|
|
Start a new proof from a given expression or symbol
|
|
|
|
* `goal.tactic {"stateId": <id>, "goalId": <id>, ...}`: Execute a tactic string on a
|
|
|
|
given goal. The tactic is supplied as additional key-value pairs in one of the following formats:
|
2024-04-15 20:00:59 -07:00
|
|
|
- `{ "tactic": <tactic> }`: Execute an ordinary tactic
|
|
|
|
- `{ "expr": <expr> }`: Assign the given proof term to the current goal
|
|
|
|
- `{ "have": <expr>, "binderName": <name> }`: Execute `have` and creates a branch goal
|
|
|
|
- `{ "calc": <expr> }`: Execute one step of a `calc` tactic. Each step must
|
2024-04-15 19:57:05 -07:00
|
|
|
be of the form `lhs op rhs`. An `lhs` of `_` indicates that it should be set
|
|
|
|
to the previous `rhs`.
|
|
|
|
- `{ "conv": <bool> }`: Enter or exit conversion tactic mode. In the case of
|
|
|
|
exit, the goal id is ignored.
|
2024-04-15 20:00:59 -07:00
|
|
|
* `goal.continue {"stateId": <id>, ["branch": <id>], ["goals": <names>]}`:
|
|
|
|
Execute continuation/resumption
|
|
|
|
- `{ "branch": <id> }`: Continue on branch state. The current state must have no goals.
|
|
|
|
- `{ "goals": <names> }`: Resume the given goals
|
|
|
|
* `goal.remove {"stateIds": [<id>]}"`: Drop the goal states specified in the list
|
2024-04-15 19:57:05 -07:00
|
|
|
* `goal.print {"stateId": <id>}"`: Print a goal state
|
2024-09-09 12:39:32 -07:00
|
|
|
* `frontend.process { ["fileName": <fileName>",] ["file": <str>], invocations:
|
|
|
|
<bool>, sorrys: <bool> }`: Executes the Lean frontend on a file, collecting
|
|
|
|
either the tactic invocations (`"invocations": true`) or the sorrys into goal
|
|
|
|
states (`"sorrys": true`)
|
2023-06-09 14:45:45 -07:00
|
|
|
|
2024-03-28 11:37:07 -07:00
|
|
|
### Errors
|
2023-08-24 22:51:40 -07:00
|
|
|
|
|
|
|
When an error pertaining to the execution of a command happens, the returning JSON structure is
|
|
|
|
|
|
|
|
``` json
|
2024-04-15 19:57:05 -07:00
|
|
|
{ "error": "type", "desc": "description" }
|
2023-08-24 22:51:40 -07:00
|
|
|
```
|
|
|
|
Common error forms:
|
|
|
|
* `command`: Indicates malformed command structure which results from either
|
|
|
|
invalid command or a malformed JSON structure that cannot be fed to an
|
|
|
|
individual command.
|
|
|
|
* `index`: Indicates an invariant maintained by the output of one command and
|
|
|
|
input of another is broken. For example, attempting to query a symbol not
|
|
|
|
existing in the library or indexing into a non-existent proof state.
|
|
|
|
|
2024-09-09 12:39:32 -07:00
|
|
|
### Project Environment
|
|
|
|
|
|
|
|
To use Pantograph in a project environment, setup the `LEAN_PATH` environment
|
|
|
|
variable so it contains the library path of lean libraries. The libraries must
|
|
|
|
be built in advance. For example, if `mathlib4` is stored at `../lib/mathlib4`,
|
|
|
|
the environment might be setup like this:
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
LIB="../lib"
|
|
|
|
LIB_MATHLIB="$LIB/mathlib4/lake-packages"
|
|
|
|
export LEAN_PATH="$LIB/mathlib4/build/lib:$LIB_MATHLIB/aesop/build/lib:$LIB_MATHLIB/Qq/build/lib:$LIB_MATHLIB/std/build/lib"
|
|
|
|
|
|
|
|
LEAN_PATH=$LEAN_PATH build/bin/pantograph $@
|
|
|
|
```
|
|
|
|
The `$LEAN_PATH` executable of any project can be extracted by
|
|
|
|
``` sh
|
|
|
|
lake env printenv LEAN_PATH
|
|
|
|
```
|
|
|
|
|
2024-03-28 11:37:07 -07:00
|
|
|
### Troubleshooting
|
2023-05-09 22:51:19 -07:00
|
|
|
|
2023-05-14 15:22:41 -07:00
|
|
|
If lean encounters stack overflow problems when printing catalog, execute this before running lean:
|
|
|
|
```sh
|
|
|
|
ulimit -s unlimited
|
|
|
|
```
|
2023-05-22 14:49:56 -07:00
|
|
|
|
2024-03-28 11:37:07 -07:00
|
|
|
## Library Usage
|
|
|
|
|
|
|
|
`Pantograph/Library.lean` exposes a series of interfaces which allow FFI call
|
2024-03-28 22:09:56 -07:00
|
|
|
with `Pantograph` which mirrors the REPL commands above. It is recommended to
|
|
|
|
call Pantograph via this FFI since it provides a tremendous speed up.
|
|
|
|
|
2024-09-09 12:39:32 -07:00
|
|
|
The executable can be used as-is, but linking against the shared library
|
2024-09-09 17:35:10 -07:00
|
|
|
requires the presence of `lean-all`. Note that there isn't a 1-1 correspondence
|
|
|
|
between executable (REPL) commands and library functions.
|
2024-09-09 12:39:32 -07:00
|
|
|
|
|
|
|
Inject any project path via the `pantograph_init_search` function.
|
|
|
|
|
2024-03-28 22:09:56 -07:00
|
|
|
## Developing
|
2024-03-28 11:37:07 -07:00
|
|
|
|
2024-04-15 19:57:05 -07:00
|
|
|
A Lean development shell is provided in the Nix flake.
|
|
|
|
|
2024-03-28 22:09:56 -07:00
|
|
|
### Testing
|
2023-05-22 14:49:56 -07:00
|
|
|
|
2024-09-09 12:39:32 -07:00
|
|
|
The tests are based on `LSpec`. To run tests, use either
|
|
|
|
``` sh
|
|
|
|
nix flake check
|
|
|
|
```
|
|
|
|
or
|
2023-05-22 14:49:56 -07:00
|
|
|
``` sh
|
2024-08-18 12:22:59 -07:00
|
|
|
lake test
|
|
|
|
```
|
|
|
|
You can run an individual test by specifying a prefix
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
lake test -- "Tactic/No Confuse"
|
2023-05-22 14:49:56 -07:00
|
|
|
```
|