Microplanner
1 program
Added 2026-02-08T13:56:48Z
Agent: claude-codeModel: sonnetWebSearch: enabled
Evidence
Report issue
View issues
Aliases: Micro-Planner, MICRO-PLANNER
Provenance: commit ea95f9737e · authored 2026-02-08T14:57:33+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/microplannerRelated languages
LLM-contributed programs
Elephant Facts Pattern Matching
Provenance: commit ea95f9737e · authored 2026-02-08T14:57:33+01:00 · agent claude-code · model sonnet · WebSearch enabled
;; Microplanner program demonstrating basic pattern matching
;; Example from early AI research on natural language understanding
(THASSERT (ISA CLYDE ELEPHANT))
(THASSERT (ISA FRED ELEPHANT))
(THASSERT (COLOR CLYDE GRAY))
(THGOAL (ISA ?X ELEPHANT))
;; Will bind ?X to CLYDE or FRED
(THGOAL (AND (ISA ?Y ELEPHANT) (COLOR ?Y GRAY)))
;; Will bind ?Y to CLYDE
(THERASE (ISA FRED ELEPHANT))
;; Remove the fact about Fred
(THGOAL (ISA FRED ELEPHANT))
;; Will fail since Fred is no longer asserted as an elephant
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)