├── .gitignore ├── LICENSE ├── README.md ├── Reap.lean ├── Reap ├── Basic.lean ├── Future │ ├── Basic.lean │ └── PP.lean ├── Options.lean ├── PremiseSelection │ ├── API.lean │ ├── Syntax.lean │ └── Test.lean └── Tactic │ ├── Generator.lean │ ├── Ruleset.lean │ ├── Search.lean │ ├── Syntax.lean │ └── Test.lean ├── docs └── demo.mp4 ├── lake-manifest.json ├── lakefile.toml └── lean-toolchain /.gitignore: -------------------------------------------------------------------------------- 1 | /.lake 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/README.md -------------------------------------------------------------------------------- /Reap.lean: -------------------------------------------------------------------------------- 1 | module 2 | 3 | public meta import Reap.Basic 4 | -------------------------------------------------------------------------------- /Reap/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Basic.lean -------------------------------------------------------------------------------- /Reap/Future/Basic.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Future/Basic.lean -------------------------------------------------------------------------------- /Reap/Future/PP.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Future/PP.lean -------------------------------------------------------------------------------- /Reap/Options.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Options.lean -------------------------------------------------------------------------------- /Reap/PremiseSelection/API.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/PremiseSelection/API.lean -------------------------------------------------------------------------------- /Reap/PremiseSelection/Syntax.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/PremiseSelection/Syntax.lean -------------------------------------------------------------------------------- /Reap/PremiseSelection/Test.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/PremiseSelection/Test.lean -------------------------------------------------------------------------------- /Reap/Tactic/Generator.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Tactic/Generator.lean -------------------------------------------------------------------------------- /Reap/Tactic/Ruleset.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Tactic/Ruleset.lean -------------------------------------------------------------------------------- /Reap/Tactic/Search.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Tactic/Search.lean -------------------------------------------------------------------------------- /Reap/Tactic/Syntax.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Tactic/Syntax.lean -------------------------------------------------------------------------------- /Reap/Tactic/Test.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/Reap/Tactic/Test.lean -------------------------------------------------------------------------------- /docs/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/docs/demo.mp4 -------------------------------------------------------------------------------- /lake-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/lake-manifest.json -------------------------------------------------------------------------------- /lakefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenzymath/reap/HEAD/lakefile.toml -------------------------------------------------------------------------------- /lean-toolchain: -------------------------------------------------------------------------------- 1 | leanprover/lean4:v4.26.0-rc1 2 | --------------------------------------------------------------------------------