Currently we are creating a Domain Specific Language for the Job Shop Scheduling Problem. We are using C++ as a front-end and a SMT-LIB supported back-end, currently Z3.
We have a basic program up an running with precedence and unary resource constraints.
But now we want to extend our framework to allow discrete / volumetric resources, and is very mouch in doubt how to proceed as we figure it is much different from the unary approach ((t1 < t2) OR (t2 < t1)).
As implied by the formular above we only consider non-preemptive tasks.
Basically all we need is a formal (preferably Quantifier free) specification of the discrete/volumetric resources problem or an example already modelled in SMT-lib to figure out how to proceed.
Thanks!