VehicleRoutingAlgorithm vra = vraBuilder.build();
vra.setMaxIterations(250);
We use the above code for number of iterations to be done to find vra solution. in the examples in jsprit I can see 250 as a hard coded value. My question is what is the optimal value for that. Is there any option to have solution in between the execution? I don't want to wait 250 number of iterations. Is that possible?