You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once Resolvo has found a solution, I need to calculate the correct installation order. This involves constructing a directed graph and determining a sorted list of SCCs (as a simple toposort might fail due to potential circular dependencies between packages).
This is a trivial task, all I need is the access to the list of solvables, their dependencies, and the matching candidates (filtered then by those included in the solution). Most of this information is already present in the SolverCache maintained by the solver.
Could you consider exposing the SolverCache, assuming its API is public? Doing so would save me from duplicating the caching effort or recalculating the same information.
Thank you for your time and consideration!
The text was updated successfully, but these errors were encountered:
Hi,
It's me again with another request.
Once Resolvo has found a solution, I need to calculate the correct installation order. This involves constructing a directed graph and determining a sorted list of SCCs (as a simple toposort might fail due to potential circular dependencies between packages).
This is a trivial task, all I need is the access to the list of solvables, their dependencies, and the matching candidates (filtered then by those included in the solution). Most of this information is already present in the SolverCache maintained by the solver.
Could you consider exposing the SolverCache, assuming its API is public? Doing so would save me from duplicating the caching effort or recalculating the same information.
Thank you for your time and consideration!
The text was updated successfully, but these errors were encountered: