The current Python API just wraps the Toolbox API. Users still have to set all Json details etc.
This is not user friendly.
Instead, the Python API should feel like the user is interacting with the Meta-Solver Strategy.
There should be calls like.
provideq.createVRP()
provideq.solveVRP(vrp, "lkh3")
strategy1 = provideq.loadStrategy() //load maybe a bad idea here. Just some way to create a strategy...
provideq.solveVRP(vrp, strategy1)
The current Python API just wraps the Toolbox API. Users still have to set all Json details etc.
This is not user friendly.
Instead, the Python API should feel like the user is interacting with the Meta-Solver Strategy.
There should be calls like.
provideq.createVRP()
provideq.solveVRP(vrp, "lkh3")
strategy1 = provideq.loadStrategy() //load maybe a bad idea here. Just some way to create a strategy...
provideq.solveVRP(vrp, strategy1)