Reproducibility #116
-
I was wondering if reproducibility of results is an active feature or a more of a side-effect of VRP. I ran some very quick tests with the very simple problems with the WebAssembly version and it seems indeed to provide the same results. I couldn't find anything about it in the docs, so I thought I'd ask here. Am I correct to assume that:
the results should always be the same or is there some kind of random seed somewhere for more complex problems? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
No, algorithm is non-determenistic, so for different runs it can explore solution space differently and return different solutions. Search stability is one of the main topics among with solution quality and good termination criteria. |
Beta Was this translation helpful? Give feedback.
-
You're referring to this poll right? #82 |
Beta Was this translation helpful? Give feedback.
No, algorithm is non-determenistic, so for different runs it can explore solution space differently and return different solutions. Search stability is one of the main topics among with solution quality and good termination criteria.