Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…omputed potentials from sinkhorn or even related simplex
Types of changes
Add Warmstart intialisation to the simplex solver allows us to give good potentials to our solvers and get why faster to solution with less iterations.
Motivation and context / Related issue
This change allows us to warmstart with potentials from other solvers. Instead of using normal initial pivots to create a Tree. We use the given potential to create a first feasible solution in our Simplex. If given potentials are good potential for big speedup. Still need to compute all Reduce Costs at least once which means that the running time for the warmstart can be big for big problems so should be done with good potentials and not just any potentials.
How has this been tested (if it applies)
Not yet still needs to be done in the test directory.
PR checklist