Skip to content
Snippets Groups Projects
Commit d36292c8 authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

Another fix for Windows

parent 7c0d599c
Branches
Tags
No related merge requests found
...@@ -21,7 +21,7 @@ const int maxint = 100;//20; ...@@ -21,7 +21,7 @@ const int maxint = 100;//20;
const int minsize = 10;//20; const int minsize = 10;//20;
const int maxsize = 1000000;//500; const int maxsize = 1000000;//500;
const int increment = 10; // increment factor (multiplicative) const int increment = 10; // increment factor (multiplicative)
const int arraysize = std::log10(maxsize/minsize)+1; const int arraysize = int(std::log10(double(maxsize/minsize)))+1;
bool showGraphics = false; bool showGraphics = false;
bool verbose = false; bool verbose = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment