rust-prolog icon indicating copy to clipboard operation
rust-prolog copied to clipboard

Rust implementation of prolog based on miniprolog: http://andrej.com/plzoo/html/miniprolog.html

Results 5 rust-prolog issues
Sort by recently updated
recently updated
newest added

Currently `[H|T]` is sugar for `cons(H,T)`, but this syntax should be more general and allow this form: ``` [H1, H2, ..., Hn | T] ``` Which translates to: ``` cons(H1,...

The current implementation of search makes unnecessary copies. Can these be converted to moves? What other optimizations are possible? Find a way to benchmark the before and after effects.

This is a place holder to remind me to learn how to write tests.