Fork me on GitHub
#datalog
<
2021-10-12
>
zeitstein06:10:04

Looking to estimate how much work the following problem would require: "Given a Datalog query (the result of which is a set of entities), create an entity which would satisfy the query."

bbss07:10:10

@mithrandir03 You could probably get pretty far with just clojure.spec and its generative capabilities, which are a "teaser" for the more capable https://github.com/clojure/test.check Further things that could help out are unification and logic programming (https://github.com/clojure/core.unify / https://github.com/clojure/core.logic )

zeitstein17:10:03

Thanks for getting me started!

👍 1