A simple program that alows you to type in math expressions (even on multiple lines) in RPN and evaluate them. The program keeps a table of golbal variables so you can store values for later use. All the numbers are stored as multiple precision rationals provided by the GMP library (through rug), so your calculations will be limited by just your memory (and rational numbers). rpn-c is also parallelized using rayon, so you can evaluate multiple expressions at the same time.
This little project started both because of necessity (I wanted a program for writing quick expressions from terminal, and I wanted it to compute big numbers), and to try out using a simple lexer and a simple stack machine. At first I just wanted it to compute simple arithmetics, but midway I started adding some quality of life feature like variables and other commands, there are still some features i plan to add.
Get it from crates.io using:
sh
cargo install rpn-c
Building requires some GNU dependencies (for GMP), see the gmpmpfrsys (one of rug
's dependencies) documentation for more information on building on different systems (mainly for building on Windows).
rpn-l is the language used by (and developed for) rpn-c. It's not really user friendly, but it works, and will allow you to write your own scripts and functions for your quick calculation needs.
Every expression (and most command) are defined with fixed arity so you don't need parenthesis. The only two exceptions (>
and @
), still have known arity.
rpn-l statements are composed from two types of tokens: expressions, which can be composed with other expressions to for new ones; and commands, which cannot be composed but sometime requires to be preceded by an expression. All expression tokens get pushed on top of the stack from left to right, but are not evaluated. When (always from left to right) rpn-c encounters a command, this can cause the evaluation of the last expression pushed to the stack, or some other side effects. Commands cause actions, they aren't pushed in stack, this means that they cannot get called from inside a function.
rpn-c maintains a table of all the identifiers and their meaning, only commands can alter this table, making it immutable for expression and functions. This looks like a limitation, but immutability allows the evaluation tree to be executed in parallel.
(+|-)<some_decimal_number>(/<another_number>)
identifies a numeric constant (a fraction)/
without denominator)<variable_name>
identifies a variable<exp0> <exp1> (+|-|*|/)
performs an arithmetic binary operation<exp0> <exp1> ~
perform a positive subtraction0
, it returns 0
<exp0> <exp1> \
perform an Euclidean (or integer) division<exp0> <exp1> <exp2> ?
if-then construct<exp2>
not equals 0
, drops <exp1>
evaluates and returns <exp0>
<exp2>
equals 0
, drops <exp0>
evaluates and returns <exp1>
$<some_number>
identifies an argument<exp0> <exp1> ... <function_name>
calls a function<expN>
corresponds to the argument $N
<exp0> <function_name>|<arity>
declares a function of <arity>
as <exp1>
<exp0> <exp1> ... <expN-1> <expN> <expN+1> <function_name>@<arity>
declares an iterative function of <arity>
N
<exp0> <exp1> ... <expN-1> <function_name> <expN> <expN+1> ? <function_name>|<arity>
, but better<exp0> =<variable_name>
evaluates the expression on top of the stack and assigns its value to a variable<exp0> =
evaluates the expression on top of the stack and prints it<exp0> #
evaluates the expression on top of the stack and prints it, and pushes the result back in the stack:
prints the current stack>
evaluates and prints all the expressions on the stack (starting from top)<exp0> <
evaluates and duplicate the expression on top of the stack<exp0> !
drops the expression on top of the stack%
drops the entire stack;<some_comment>
comments the rest of the lineFrom version 0.1.1, rpn-l is Turing-Complete, so theoretically it can compute anything computable, but there'sstill work to do. The language still needs more features to ease the users work. Powers, integer division, and remainders will be added for sure; while roots and logarithms will need more time (if they will be implemented) because they will cause a loss of precision (due to irrationality). Infinite precision (with rational numbers) is a key element of the program, so anything that causes a fallback to floating point numbers (even Multiple-precision floating point numbers) will be neglected for the time being.
About scripting. For now, the user's ability to script is limited to: concatenating some number and a script file, and pipe that into rpn-c. It's still more than what your usual 4-op calculator can do, but it's not enough. More features amied to scripting and working with library will be added in future.
The completeness of the language will be proved by simulating the primitives and the behaviour of the operators required for the construction μ-recursive functions, using a subset of the actual rpn-l language.
The subset consists of the operators +
and ~
, the definition of N-ary functions, and the integer literals 0
and 1
; the =
command is not needed for this proof, but it's needed to run the functions defined this way.
Other features of the language are not needed for completeness but make the language more usable.
A function zero
that receives N arguments and returns 0.
rpn-l
0 zero|N
A function S
that increments its one argument by one.
rpn-l
$0 1 + S|1
A function P
that receives N arguments and returns the I-th argument
rpn-l
$I P|N
It's possible to define a K-ary function g
by composing K N-ary functions fk
and one K-ary function h
.
rpn-l
$0 ... $N-1 f1
...
$0 ... $N-1 fK
h g|N
It is possible to define a K+1-ary primitive recursive function f
given the K-ary function g
for the base case and the K+2-ary function h
for the recursive case.
rpn-l
$0 1 ~
$0 1 ~ $1 ... $K f ; Recursive call
$1 ... $K
h ; Recursive case
$1 ... $K g ; Base case
$0
? f|K+1
Given a K+1-ary function f
, it is possible to write a K-ary function mu-f
that receives K arguments and finds the smallest value (starting from 0), that (along with the other K arguments) causes f
to return 0.
```rpn-l $0 1 + $1 ... $K mu-frec ; Recursive case $0 ; Found minimum $0 ... $k f ; Test for zero ? mu-frec|K+1 ; Auxiliary function
0 $0 ... $K-1 mu-f_rec mu-f|K ; μ-function ```
Alternatively:
```rpn-l $0 1 + $1 ... $K ; Calculate next arguments $0 ; Found minimum $0 ... $K f ; Test for 0 mu-f_aux@K+1 ; Auxiliary function
0 $0 ... $k-1 mu-f_aux mu-f|K ; μ-function ```
Results: * μ-recursive functions are proved to be Turing Equivalent * Being able to simulate them makes rpn-l complete * A computer is able to simulate rpn-l (rpn-c runs on a computer) * Every rpn-l function is also Turing-Computable * From the above statements follows that rpn-l is Turing-Equivalent
Near future:
* [x] Commenting
* [ ] Some more basic operations (paused)
* [x] Powers (via standard library)
* [x] Integer division (required for 0.2.0)
* [x] Remainder (via standard_library)
* [x] User defined functions
* [x] if-else
* [x] Recursion
* [x] Proof of Turing-Completeness
* [x] First crates.io release
* [ ] Solve the stack overflow issue
* Rewrite the executor so that it doesn't use recursion
* Would probably cause less parallelization
* [x] Allow writing iterative functions (required for 0.2.0)
* Enables writing functions that don't overflow with few thousands of iterations
* [x] Add parallelization
* [ ] Switch to a better crate than rug
* [ ] A decent prompt (with history)
* [ ] Input from multiple files
* [ ] Output to file (silent mode)
Maybe one day: * [ ] Approximation of some irrational operations * [ ] Approximation of irrational constants like pi, phi, e, log_2(10) * [ ] Speeding up tail recursion * [x] Add some form of iteration without recursion * [ ] Upgrading to a real LALR (that kinda defeats the whole point) * [ ] Programming an actual compiler