We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87c83e8 commit 3b8484fCopy full SHA for 3b8484f
1 file changed
include/CXXGraph/Partitioning/Utility/Globals.hpp
100755
100644
@@ -38,6 +38,20 @@ class Globals {
38
const unsigned int threads = std::thread::hardware_concurrency());
39
~Globals();
40
41
+ Globals& operator=(const Globals& that) {
42
+ numberOfPartition = that.numberOfPartition; // number of partitions
43
+ partitionStategy = that.partitionStategy;
44
+ threads = that.threads;
45
+ param1 = that.param1;
46
+ param2 = that.param2;
47
+ param3 = that.param3;
48
+
49
+ edgeCardinality = that.edgeCardinality;
50
+ vertexCardinality = that.vertexCardinality;
51
+ edgeAnalyzed = that.edgeAnalyzed;
52
+ return *this;
53
+ }
54
55
const std::string print() const;
56
57
// CONSTANT
0 commit comments