-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vehicle Specific Capacities #17
Comments
Daniel can you help me getting started with code for this issue. |
Sure, here's how to get started on this task:
Hope that helps - feel free to post back if you need more details or have questions :) |
hey daniel the work is almost done .. but i m having a tough time debugging . Can you suggest a way to debug nodejs coupled with c++ addons. |
What I can recommend is:
then you should be able to attach a debugger and step through it. I can also recommend you forking this repo. and making a pull request early on so we can have some eyes on it and give you some hints early on. |
hey man .. sorry to bother you but i have re-cloned the repository and rebuild from source .. but this time it is giving me this error ... could you check if it is giving you the same error or is it just on my system? |
Can you give us some more details - how did you build the bindings, what's the compiler and stdlib you are using, which operating system and distribution are you on etc. |
I first checked the install script whether it is as u mentioned ... the i ran the command npm install ...and then |
Can you commit your work on a branch and then push it - I can't help you much without being able to reproduce it locally or have a look at what's going on. |
Never mind daniel, that was sorted ... but there was one thing that was bothering me ... i am confused about the demands matrix as what does it means ... according to me if it was a demand array it would more clear to me as demand[i] at node i. I tried thinking like the vehicle carrying the load from a node to another node might change due to pickups . But they are all assinged to 1 except from depot, which also doesnt make sense to me ... please help... and i ll soon commit the work on a branch .. sorry i was occupied somewhere. |
Check the docs in |
hey daniel hi, today i created a pull request .. it failed in travis build ... It is working in my system . |
hey hi daniel, i had one query, Right now .. the node-or-tools is capable of deploying one order to exactly one location and only one vehicle carrying ... i want it .. to be able to take multiple orders at a given location, and with the given vehicles they can be delivered to the same location via one vehicle or more depending upon the constraints .Can this be possible, using the or-tools, i really need you advice on this to move forward. |
You should be able to use multiple vehicles and then use the pickup and delivery feature to specify delivery and pickup constraints. If you want multiple vehicles to serve the same location you can add artificial locations internally and then collapse them again after you get the solution. |
What was about this? |
Hi, was wondering if this feature is supported, i don't see the new vehicleCapacities property in the documentation |
At the moment we expose a single
vehicleCapacity
property. With it users can set the capacities for all their vehicles. What we should do instead is expose avehicleCapacities
property (parallel array coinciding with the vehicles) where the user can specify a capacity on a per vehicle basis.Related: Heterogeneous Fleets #11
cc @karenzshea
The text was updated successfully, but these errors were encountered: