I glanecd at the C++ examples "flexible_jobshop" and "jobshop_sat" and understand that the first one uses the constraint solver and the second one the SAT. What is the difference? Could anyone point me to some reference please?
I'd like to use C# rather than C++. Does anyone have a C# version of those examples or similar ones? And would there be a reason not to use C# and stick to C++?
Thank you very much in advance!Regards,Lukas
--
You received this message because you are subscribed to the Google Groups "or-tools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to or-tools-discuss+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
solver.MakeIntervalVarRelation(t2, Solver::STARTS_AFTER_END, t1);
Hi Lukas,
To unsubscribe from this group and stop receiving emails from it, send an email to or-tools-discu...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--driss
To unsubscribe from this group and stop receiving emails from it, send an email to or-tools-discuss+unsubscribe@googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "or-tools-discuss" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/or-tools-discuss/mlxVrMQtcHM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to or-tools-discuss+unsubscribe@googlegroups.com.
Hi Driss,Thank you very much! Don't worry, I got stuck in another project anyway. Soon I'll be looking into this again and then I'm sure this will help a lot =)Regards, Lukas
Another question: In my problem, there are changeover times between some tasks, depending on some properties of the tasks and machines. Can you hint on how to implement such constraints?
--