clpsmt-miniKanren icon indicating copy to clipboard operation
clpsmt-miniKanren copied to clipboard

CLP(SMT) on top of miniKanren

Results 5 clpsmt-miniKanren issues
Sort by recently updated
recently updated
newest added

See the following program: ``` (run* (q) (z/ `(declare-const ,q Int)) (z/assert `(and (>= ,q 1) (= ,x 1) (

Hi @chansey97, @michaelballantyne, @webyrd and everyone, We would like to set up a conference call to discuss the future of CLP(SMT)-miniKanren and welcome @chansey97 as a new contributor. We want...

There are two main repos of miniKanren's SMT hook: [clpsmt-miniKanren](https://github.com/namin/clpsmt-miniKanren) and [smt-assumptions](https://github.com/namin/faster-miniKanren/tree/smt-assumptions) These two repos seemly have their own advantages and restrictions. 1. `smt-assumptions` uses `check-sat-assuming` to improve performance and...

Executing the following program crash: ``` (run 2 (q) (z/ `(declare-const ,q Int)) (== q 6)) Exception in call-z3: error in z3 out.smt > out.txt ``` smt.out ``` (declare-const 6...

Hi, I am trying to use clpsmt-miniKanren for constraint logic programming, it's great work! But I am not sure which z3 version should I use? I initially used z3-4.8.12, but...