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
The --solver option of minizinc supports solver versions (e.g. --solver [email protected]) by considering the version information provided by the solver definitions. Solver.lookup, however, ignores version information, i.e. it chooses a random version if several versions are installed. This lack of functionality makes it hard to compare different versions of a solver. The only way is to deinstall or disable (by removing solver definition files) all versions except for one, test it, then change the setup, and so on. It's a tedious and error-prone process.
The text was updated successfully, but these errors were encountered:
To add tags that include the version: split at major, split at minor, or full version. This would allow the lookup for version annotated identifiers, e.g. [email protected], [email protected], and my-solver@1.
To ensure that the tag maps for identifiers remain in sorted order. This would ensure that if multiple version of my-solver are present, then the newest version can be chosen.
The
--solver
option ofminizinc
supports solver versions (e.g.--solver [email protected]
) by considering the version information provided by the solver definitions.Solver.lookup
, however, ignores version information, i.e. it chooses a random version if several versions are installed. This lack of functionality makes it hard to compare different versions of a solver. The only way is to deinstall or disable (by removing solver definition files) all versions except for one, test it, then change the setup, and so on. It's a tedious and error-prone process.The text was updated successfully, but these errors were encountered: