minilog

所属分类:编译器/解释器
开发工具:Haskell
文件大小:0KB
下载次数:0
上传日期:2023-11-01 16:41:15
上 传 者sh-1993
说明:  一种小型关系(逻辑)编程语言。
(A small relational (logic) programming language.)

文件列表:
CHANGELOG.md (110, 2023-12-02)
LICENSE (1052, 2023-12-02)
WRITEUP.md (23860, 2023-12-02)
app/ (0, 2023-12-02)
app/Main.hs (5430, 2023-12-02)
factorial.pl (186, 2023-12-02)
minilog.cabal (1236, 2023-12-02)
natural.pl (28, 2023-12-02)
src/ (0, 2023-12-02)
src/Evaluate/ (0, 2023-12-02)
src/Evaluate/State.hs (1597, 2023-12-02)
src/Evaluate/Step.hs (9892, 2023-12-02)
src/Lexer.x (3453, 2023-12-02)
src/Parser.y (2509, 2023-12-02)
src/Term.hs (943, 2023-12-02)
src/Token.hs (266, 2023-12-02)

# Minilog Minilog is a very small programming language implementation. It's goal is to capture the essence of relational/logic programming. > For the implementation write up see: [the write up](https://github.com/lambduli/minilog/blob/master/./WRITEUP.md). It is very much a subset of Prolog, at least in terms of the syntax. The biggest (intended) difference in terms of a runtime behaviour is the strict `occurs` checking. Unlike Prolog, Minilog does not accept infinite terms. This means that the following snippet will succeed in Prolog but not in Minilog: ```prolog X = foo(X). ``` ## Syntax As stated above, Minilog's syntax is a subset of the syntax of Prolog. In Minilog you have: - Atoms `foo`, `z` - Variables `X`, `Y` - Wildcards `_` - Structs `foo(X, thing)` - Facts `plus(z, N, N).` - Rules `plus(s(N), M, s(R)) :- plus(N, M, R).` - Conjunctions `times(N, M, R), plus(R, M, A).` - Unification Operator `X = something` ---- Here is an example of a valid Minilog knowledge base definition: ```prolog plus(z, N, N). plus(s(N), M, s(R)) :- plus(N, M, R). times(z, _, z). times(s(N), M, A) :- times(N, M, R), plus(R, M, A). fact(z, s(z)). fact(s(N), R) :- fact(N, PR), times(s(N), PR, R). ``` And here is an example of a valid query: ```prolog ?- fact(A, B) , plus(A,B, s(s(z))) . ``` --- ## What is not in Minilog? - numbers - arithmetics (obviously) - strings - explicit or (`;`) - cuts (`!`) ## What is it for? The implementation is just a complement of the [write up](https://github.com/lambduli/minilog/blob/master/./WRITEUP.md). The goal of this project is to offer an introductory level almost tutorial-like description of an implementation of a simple abstract machine for a logic language. The design of the implementation is not aming to represent a practical implementation of a relational programming language. It should not be more than an initial insight into the ideas behind concepts like unification, proof search that happens during the evaluation and a backtracking in such a proof search. You could also say that the design of the implementation was chosen to be observable by default. Indeed, as the runtime is implemented as a simple "stepping" interpreter, we can very much see "inside" the process. The write up goes into more detail on that topic. The goal of the project is not to be a rigorous introduction into the matter! At best it should serve as a toy-like demonstration; similar to when a math or physics teacher reaches for a vast (but still valid) simplification to make some complicated sounding concept more approachable. ## How can you use it? 1) You run `cabal build` and if that succeeded `cabal run`. 2) You can use the knowledge base in the repository, modify it, or use your own. It is loaded into the repl using a command `:load ` like `:load factorial.pl`. 3) You write Prolog-like query and hit enter. 4) When presented with a result, you either write `:next` and hit enter (to backtrack) or you write `:done` and hit enter to conclude the computation. 5) When you want to quit the REPL, you submit `:q` or `:Q`.

近期下载者

相关文件


收藏者