Given a list of rules and a query, build a work plan that can be
used to execute the query.
(defn build-work-plan
"Given a list of rules and a query, build a work plan that can be
used to execute the query."
[rules query]
(struct-map work-plan
:work-plan (build-soft-strat-work-plan rules query)
:rules rules
:query query
:work-plan-type ::soft-stratified))
Comments top
No comments for build-work-plan. Log in to add a comment.