Skip to content
Snippets Groups Projects
Commit f2b1521b authored by Silas Dohm's avatar Silas Dohm
Browse files

off by one

parent 75cd69ef
No related branches found
No related tags found
1 merge request!1Master
......@@ -102,7 +102,7 @@ void Window::solveButtonClicked()
return;
}
else if(minEtropy ==0){
while (hist.size()>1)
while (hist.size()>0)
{
hist.back()->un();
hist.pop_back();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment