FindAFactor 3.6.8__tar.gz → 3.6.9__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -41,12 +41,7 @@
41
41
  #include "dispatchqueue.hpp"
42
42
 
43
43
  #include <algorithm>
44
- #include <chrono>
45
- #include <cmath>
46
- #include <float.h>
47
- #include <fstream>
48
44
  #include <future>
49
- #include <iomanip>
50
45
  #include <iostream>
51
46
  #include <map>
52
47
  #include <memory>
@@ -54,7 +49,6 @@
54
49
  #include <random>
55
50
  #include <stdlib.h>
56
51
  #include <string>
57
- #include <time.h>
58
52
 
59
53
  #include <boost/dynamic_bitset.hpp>
60
54
  #include <boost/multiprecision/cpp_int.hpp>
@@ -865,7 +859,7 @@ struct Factorizer {
865
859
  continue;
866
860
  }
867
861
  factor /= p;
868
- vec[pi] = !vec[pi];
862
+ vec.flip(pi);
869
863
  if (factor == 1U) {
870
864
  break;
871
865
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: FindAFactor
3
- Version: 3.6.8
3
+ Version: 3.6.9
4
4
  Summary: Find any nontrivial factor of a number
5
5
  Home-page: https://github.com/vm6502q/FindAFactor
6
6
  Author: Dan Strano
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: FindAFactor
3
- Version: 3.6.8
3
+ Version: 3.6.9
4
4
  Summary: Find any nontrivial factor of a number
5
5
  Home-page: https://github.com/vm6502q/FindAFactor
6
6
  Author: Dan Strano
@@ -26,7 +26,7 @@ ext_modules = [
26
26
 
27
27
  setup(
28
28
  name='FindAFactor',
29
- version='3.6.8',
29
+ version='3.6.9',
30
30
  author='Dan Strano',
31
31
  author_email='dan@unitary.fund',
32
32
  description='Find any nontrivial factor of a number',
File without changes
File without changes
File without changes