This repository has been archived on 2024-11-05. You can view files and clone it, but cannot push or open issues/pull-requests.
lamb/README.md

99 lines
3.3 KiB
Markdown
Raw Normal View History

2022-10-21 15:10:36 -07:00
# Lamb: A Lambda Calculus Engine
2022-10-21 15:07:38 -07:00
2022-10-28 20:45:39 -07:00
![Lamb screenshot](./misc/screenshot.png)
2022-10-21 15:07:38 -07:00
2022-10-28 20:45:39 -07:00
## Installation
2022-10-21 15:07:38 -07:00
2022-10-28 20:45:39 -07:00
### Method 1: PyPi (not yet)
1. Put this on PyPi
2. Write these instructions
### Method 2: Git
1. Clone this repository.
2. Make and enter a [virtual environment](https://docs.python.org/3/library/venv.html).
3. ``cd`` into this directory
4. Run ``pip install .``
5. Run ``python .``
-------------------------------------------------
## Usage
Type lambda expressions into the prompt, and Lamb will evaluate them. \
Use your `\` (backslash) key to type a `λ`. \
To define macros, use `=`. For example,
```
~~> T = λab.a
~~> F = λab.a
~~> NOT = λa.a F T
```
Note that there are spaces in `λa.a F T`. With no spaces, `aFT` will be parsed as one variable. \
Lambda functions can only take single-letter, lowercase arguments. `λA.A` is not valid syntax. \
2022-10-29 13:25:37 -07:00
Unbound variables (upper and lower case) that aren't macros will become free variables. Free variables will be shown with a `'`, like `a'`.
2022-10-28 20:45:39 -07:00
Be careful, macros are case-sensitive. If you define a macro `MAC` and accidentally write `mac` in the prompt, `mac` will become a free variable.
Numbers will automatically be converted to Church numerals. For example, the following line will reduce to `T`.
```
~~> 3 NOT F
```
If an expression takes too long to evaluate, you may interrupt reduction with `Ctrl-C`.
-------------------------------------------------
## Commands
Lamb comes with a few commands. Prefix them with a `:`
`:help` Prints a help message
`:clear` Clear the screen
`:rlimit [int | None]` Set maximum reduction limit. `:rlimit none` sets no limit.
`:macros` List macros in the current environment.
`:mdel [macro]` Delete a macro
`:save [filename]`\
`:load [filename]` Save or load the current environment to a file. The lines in a file look exactly the same as regular entries in the prompt, but must only contain macro definitions.
-------------------------------------------------
## Internals
2022-10-29 10:25:06 -07:00
Lamb treats each λ expression as a binary tree. Variable binding and reduction are all simple operations on that tree. All this magic happens in [`nodes.py`](./lamb/nodes.py).
2022-10-28 20:45:39 -07:00
**Highlights:**
- `TreeWalker` is the iterator we (usually) use to traverse our tree. It walks the "perimeter" of the tree, visiting some nodes multiple times.
- `Node` is the base class for all nodes. Any node has `.left` and `.right` elements, which may be `None` (empty). `Node`s also reference their parent and their direction relative to their parent, to make tree traversal easy.
- Before any reduction is done, variables are bound via `bind_variables`. This prevents accidental conflicts common in many lambda parsers.
-------------------------------------------------
2022-11-01 20:48:43 -07:00
## Todo (pre-release, in this order):
2022-11-01 21:29:39 -07:00
- Fix :save
- Cleanup warnings
- Truncate long expressions in warnings
2022-10-28 20:45:39 -07:00
- Prevent macro-chaining recursion
2022-10-29 10:25:06 -07:00
- Full-reduce option (expand all macros)
- step-by-step reduction
- Cleanup files
2022-11-01 20:48:43 -07:00
- Update screenshot
2022-11-01 21:29:39 -07:00
- Update documentation & "internals" section.
2022-10-22 08:28:05 -07:00
- PyPi package
2022-10-28 20:45:39 -07:00
## Todo:
- History queue + command indexing
- Show history command
2022-10-29 10:25:06 -07:00
- Better class mutation: when is a node no longer valid?
- Loop detection
2022-10-28 20:45:39 -07:00
- $\alpha$-equivalence check
- Command-line options (load a file, run a set of commands)
2022-10-28 20:45:39 -07:00
- Unchurch macro: make church numerals human-readable
2022-11-01 20:48:43 -07:00
- Syntax highlighting: parenthesis, bound variables, macros, etc
- Tests