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
In the current implementation, the ParameterInputDialog for the Swan Implementation has three buttons - Cancel, Update Plot and Calculate. For one run of the algorithm, the Update Plot button must be clicked first in order to instantiate different Kmeans Solvers, and only then should the Calculate button be clicked. This is not clear from the design of the GUI itself, it's worth:
greying out the Calculate button until the Update Plot is clicked (and the Solvers are successfully calculated)
Additionally, should be fixed so that the chosen_solver is not looked for unless _solvers is an empty list. It should essentially read:
ifnotself._solvers:
This should also fix the error which is raised when Cancel is pressed in the ParameterInputDialog.
The text was updated successfully, but these errors were encountered:
In the current implementation, the ParameterInputDialog for the Swan Implementation has three buttons - Cancel, Update Plot and Calculate. For one run of the algorithm, the Update Plot button must be clicked first in order to instantiate different Kmeans Solvers, and only then should the Calculate button be clicked. This is not clear from the design of the GUI itself, it's worth:
Additionally,
should be fixed so that the chosen_solver is not looked for unless _solvers is an empty list. It should essentially read:
This should also fix the error which is raised when Cancel is pressed in the ParameterInputDialog.
The text was updated successfully, but these errors were encountered: