We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 713864a commit cdd2931Copy full SHA for cdd2931
FindAFactor/_find_a_factor.cpp
@@ -41,6 +41,7 @@
41
#include "dispatchqueue.hpp"
42
43
#include <algorithm>
44
+#include <cmath>
45
#include <future>
46
#include <iostream>
47
#include <map>
setup.py
@@ -10,7 +10,7 @@
10
if os.name == 'nt':
11
cpp_args = ['/std:c++17', '/O3']
12
else:
13
- cpp_args = ['-std=c++17', '-O3', '-lpthread']
+ cpp_args = ['-O3', '-std=c++17', '-lpthread']
14
15
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
16
with open(README_PATH) as readme_file:
0 commit comments