greetings
About "first solution methods are heuristics and can fail"
I am trying to work around the first solution method failing.
So I build a model and attempt to search for a solution using different first solution strategies.
Literally I have code like this
```
for fss in [PARALLEL_CHEAPEST_INSERTION,GLOBAL_CHEAPEST_ARC,...,]:
search_parameters.first_solution_strategy = fss
routingModel.SolveWithParameters(search_parameters)
```
The trouble is that as soon as i try to solve the model with a first solution strategy that does not work, all other first solution strategies fail as well.
They fail even if the solution can be found with a strategy if i try to use this strategy strategies before the failed strategy.
In other words, after building a model I have only 1 chance to try to find the solution with the right solution strategy.
Is there a way to reset a model and try with another first solution strategy after searching with the previous one failed?
Is there another way who to work around the first solution failing problem?
Thank you