A simple functional equitational calculator in haskell
Find a file
Pranshu Sharma 953c0d2298 Massive: completed parser and show
Now parse and show finally works properly.  Now I have to do the laws,
fun part.
2025-05-19 22:54:13 +10:00
prover.hs Massive: completed parser and show 2025-05-19 22:54:13 +10:00
README.md Added readme 2025-05-14 23:32:25 +10:00

An equational calculator in haskell

It equates functions using laws. A law might be something like:

map after concat:   map f . concat = concat . map (map f)

Limtations

This deos not generate tree of complitions(yet), but rather list. So it's sometimes wrong where there are 2 possible simplification routes available.