I am using the following npm package https://www.npmjs.com/package/minizinc but the documentation doesn't state how to enter cli strings/options where model
is that might change the functionality instead of only returning the default first solved solution.
If you're going to make the effort to create an npm package, why stop at putting 0 effort into the instructions in how to actually use it? I don't get it.
m.solve(model).then((result) => {
console.log(result);
});
Is the model
string literally only the model, or can it take other parameters? Maybe the Minizinc manual or tutorials missed making it clear that the model itself can state options that cover the functionality that the Windows IDE provides, eg stating how many solutions to show before stopping?
Thanks!