Update: you can test the performance of your algorithm configuration with the benchmark instances from Homberger and Gehring (download them here:
http://neo.lcc.uma.es/vrp/vrp-instances/capacitated-vrp-with-time-windows-instances/). Just read these instances with jsprit.instance.reader.SolomonReader and solve them with your algorithm config. You can find best known results here:
http://www.sintef.no/Projectweb/TOP/VRPTW/Homberger-benchmark/.
To get an impression of how computation time depends on no. of customers, look at the attached figure. It is calculated with a 3.2 GHz machine (4 cores). As you can see, it is worth to use the concurrent mode at about 350 customers (IN THIS BENCHMARK INSTANCE C204 which characterized by a long scheduling horizon and large time windows). It is calculated with the following algo config:
LargeRandomRuin (fraction \(f=0.5\)) and BestInsertion [\(Prob=0.2\)]
LargeRadialRuin (\(f=0.3\)) and BestInsertion [\(Prob=0.2\)]
SmallRandomRuin (\(f=0.1\)) and BestInsertion [\(Prob=0.3\)]
SmallRadialRuin (\(f=0.05\)) and BestInsertion [\(Prob=0.3\)]
along with SchrimpfAcceptance (alpha = 0.1), 20000 iteration and a premature terminator based on variationCoeffciant (500,0.001)