datalog

zeitstein 2021-10-12T06:58:04.009300Z

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."

2021-10-12T07:57:10.012500Z

@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 )

zeitstein 2021-10-12T17:47:03.012700Z

Thanks for getting me started!

👍 1