1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908 | // NDP-5_1_3.cpp
//
// Non-Deterministic Processor (NDP) - Parallel SAT-Solver with OpenMPI for unlimited scalability
//
// Copyright (c) 2024 GridSAT Stiftung
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
// GridSAT Stiftung - Georgstr. 11 - 30159 Hannover - Germany - ipns://gridsat.eth - info@gridsat.io
//
#include <iostream>
#include <vector>
#include <queue>
#include <chrono>
#include <thread>
#include <unordered_set>
#include <set>
#include <fcntl.h>
#include <atomic>
#include <string>
#include <regex>
#include <stdexcept>
#include <filesystem>
#include <fstream>
#ifdef _WIN32
#include <direct.h>
#else
#include <unistd.h>
#endif
// Third-party library includes
#include <gmpxx.h>
#include <mpi.h>
int dev_null = open("/dev/null", O_WRONLY);
auto _ = dup2(dev_null, STDERR_FILENO);
std::ostringstream output_ss;
std::string version = "\n NDP-version: 5.1.3";
std::string getWorkingDirectory() {
char temp[PATH_MAX];
if (getcwd(temp, sizeof(temp)) != nullptr) {
return std::string(temp);
} else {
return std::string("");
}
}
std::string formatDuration(double seconds) {
int months = static_cast<int>(seconds / (60 * 60 * 24 * 30));
seconds -= months * 60 * 60 * 24 * 30;
int days = static_cast<int>(seconds / (60 * 60 * 24));
seconds -= days * 60 * 60 * 24;
int hours = static_cast<int>(seconds / (60 * 60));
seconds -= hours * 60 * 60;
int minutes = static_cast<int>(seconds / 60);
seconds -= minutes * 60;
std::stringstream ss;
if (months > 0) ss << months << " months ";
if (days > 0) ss << days << " days ";
if (hours > 0) ss << hours << " hours ";
if (minutes > 0) ss << minutes << " minutes ";
ss << seconds << " seconds\n";
return ss.str();
}
std::string getCurrentUTCTime() {
auto now = std::chrono::system_clock::now();
std::time_t now_c = std::chrono::system_clock::to_time_t(now);
std::tm utc_tm = *std::gmtime(&now_c);
std::stringstream ss;
ss << std::put_time(&utc_tm, "%Y-%m-%d %H:%M:%S UTC");
return ss.str();
}
std::string createProblemID(const std::string& input_number, int num_bits, int world_size, const std::string& utcTime) {
std::stringstream ss;
ss << input_number << "-" << num_bits << "-" << world_size << "-" << utcTime;
std::string data = ss.str();
std::size_t hash_value = std::hash<std::string>{}(data);
std::stringstream hash_ss;
hash_ss << std::hex << hash_value;
return hash_ss.str().substr(0, 16);
}
using Matrix = std::vector<std::vector<int>>;
using PairMatrix = std::pair<Matrix, Matrix>;
PairMatrix ResolutionStep(Matrix A, int i) {
Matrix LA;
Matrix RA;
for (auto &subarray : A) {
std::vector<int> modified_subarray;
for (int x : subarray) {
modified_subarray.push_back(x + i);
}
if (std::find(modified_subarray.begin(), modified_subarray.end(), 2 * i) != modified_subarray.end()) {
continue;
}
LA.push_back(modified_subarray);
}
for (auto &subarray : LA) {
for (int &x : subarray) {
if (x != 0) x -= i;
}
}
for (auto &subarray : A) {
std::vector<int> modified_subarray;
for (int x : subarray) {
modified_subarray.push_back(x - i);
}
if (std::find(modified_subarray.begin(), modified_subarray.end(), -2 * i) != modified_subarray.end()) {
continue;
}
RA.push_back(modified_subarray);
}
for (auto &subarray : RA) {
for (int &x : subarray) {
if (x != 0) x += i;
}
}
return std::make_pair(LA, RA);
}
int choice(const std::vector<std::vector<int>> &A) {
for (const auto &subarray : A) {
if (std::count(subarray.begin(), subarray.end(), 0) == 2) {
for (int x : subarray) {
if (x != 0) return std::abs(x);
}
}
}
for (const auto &subarray : A) {
if (std::count(subarray.begin(), subarray.end(), 0) == 1 && subarray.size() == 3) {
for (int x : subarray) {
if (x != 0) return std::abs(x);
}
}
}
return A.size() > 0 && A[0].size() > 0 ? std::abs(A[0][0]) : 0;
}
bool containsZeroSubarray(const std::vector<std::vector<int>>& matrix) {
for (const auto& row : matrix) {
if (row.size() == 1 && row[0] == 0) {
return true;
}
}
return false;
}
std::vector<std::vector<int>> Satisfy_iterative(std::vector<std::vector<int>> A, bool firstAssignment = false) {
std::vector<std::pair<std::vector<std::vector<int>>, std::vector<int>>> stack = {{A, {}}};
std::vector<std::vector<int>> results;
std::set<std::vector<int>> unique_results;
bool found_first_assignment = false;
while (!stack.empty()) {
auto [current_A, choices] = stack.back();
stack.pop_back();
if (containsZeroSubarray(current_A)) {
continue;
}
int i = choice(current_A);
if (i == 0) {
if (unique_results.insert(choices).second) {
results.push_back(choices);
if (firstAssignment) {
found_first_assignment = true;
break;
}
}
continue;
}
auto [LA, RA] = ResolutionStep(current_A, i);
if (LA.empty() || std::any_of(LA.begin(), LA.end(), [](const std::vector<int>& subarray) { return subarray == std::vector<int>{0, 0, 0}; })) {
if (LA.empty()) {
std::vector<int> new_choices = choices;
new_choices.push_back(i);
if (unique_results.insert(new_choices).second) {
results.push_back(new_choices);
if (firstAssignment) {
found_first_assignment = true;
break;
}
}
}
} else {
std::vector<int> new_choices = choices;
new_choices.push_back(i);
stack.emplace_back(LA, new_choices);
}
if (RA.empty() || std::any_of(RA.begin(), RA.end(), [](const std::vector<int>& subarray) { return subarray == std::vector<int>{0, 0, 0}; })) {
if (RA.empty()) {
std::vector<int> new_choices = choices;
new_choices.push_back(-i);
if (unique_results.insert(new_choices).second) {
results.push_back(new_choices);
if (firstAssignment) {
found_first_assignment = true;
break;
}
}
}
} else {
std::vector<int> new_choices = choices;
new_choices.push_back(-i);
stack.emplace_back(RA, new_choices);
}
}
return results;
}
std::pair<std::queue<std::pair<Matrix, std::vector<int>>>, int>
Satisfy_iterative_BFS(Matrix A, int max_iterations, int max_tasks, bool override_max_tasks, int &iterations, int max_queues, int world_rank, size_t &initial_queue_size) {
std::queue<std::pair<Matrix, std::vector<int>>> queue;
queue.push(std::make_pair(A, std::vector<int>{}));
iterations = 0;
int task_count = 1;
int previous_task_count = task_count;
int previous_iterations = iterations;
while (!queue.empty()) {
if (max_queues != -1 && queue.size() >= static_cast<size_t>(max_queues)) {
break;
}
if (max_queues == -1 && !override_max_tasks && task_count >= max_tasks) {
break;
}
auto [current_A, choices] = queue.front();
queue.pop();
int i = choice(current_A);
if (i == 0) {
continue;
}
auto [LA, RA] = ResolutionStep(current_A, i);
if (!LA.empty() && !std::any_of(LA.begin(), LA.end(), [](const std::vector<int>& subarray) { return subarray == std::vector<int>{0, 0, 0}; })) {
std::vector<int> new_choices = choices;
new_choices.push_back(i);
queue.push(std::make_pair(LA, new_choices));
task_count++;
}
if (!RA.empty() && !std::any_of(RA.begin(), RA.end(), [](const std::vector<int>& subarray) { return subarray == std::vector<int>{0, 0, 0}; })) {
std::vector<int> new_choices = choices;
new_choices.push_back(-i);
queue.push(std::make_pair(RA, new_choices));
task_count++;
}
iterations++;
if ((task_count != previous_task_count || iterations != previous_iterations) && world_rank == 0) {
std::cout << "\r\033[K Queue size: " << queue.size() << " - Depth: " << iterations << " - Tasks: " << task_count << std::flush;
previous_task_count = task_count;
previous_iterations = iterations;
}
if (max_queues == -1 && iterations >= max_iterations) {
break;
}
}
if (initial_queue_size == 0) {
initial_queue_size = queue.size();
}
return {queue, task_count};
}
std::vector<std::vector<int>> parseDimacsString(const std::string& data) {
std::istringstream file(data);
std::vector<std::vector<int>> result;
std::string line;
while (std::getline(file, line)) {
if (line.empty() || line[0] == 'c') {
continue;
}
if (line[0] == 'p') {
continue;
}
std::istringstream iss(line);
std::vector<int> clause;
int literal;
int count = 0;
while (iss >> literal) {
if (literal == 0) {
if (!clause.empty() && count == 1) {
clause = {0, 0, clause[0]};
}
if (!clause.empty()) {
result.push_back(clause);
}
clause.clear();
count = 0;
} else {
clause.push_back(literal);
count++;
}
}
if (!clause.empty() && count == 1) {
clause = {0, 0, clause[0]};
}
if (!clause.empty()) {
result.push_back(clause);
}
}
return result;
}
void ExtractInputsFromDimacs(const std::string& dimacsString, std::vector<int>& v1, std::vector<int>& v2) {
std::regex regex_first_input(R"(Variables for first input \[msb,...,lsb\]: \[(.*?)\])");
std::regex regex_second_input(R"(Variables for second input \[msb,...,lsb\]: \[(.*?)\])");
std::smatch match;
if (std::regex_search(dimacsString, match, regex_first_input)) {
std::string numbers = match[1].str();
std::istringstream iss(numbers);
std::string number;
while (std::getline(iss, number, ',')) {
try {
v1.push_back(std::stoi(number));
} catch (const std::invalid_argument& e) {
std::cerr << "\nInvalid argument while converting to int: " << number << std::endl;
throw;
} catch (const std::out_of_range& e) {
std::cerr << "\nOut of range error while converting to int: " << number << std::endl;
throw;
}
}
} else {
std::cerr << "\nError: Could not find 'first input' section in the DIMACS string.\n" << std::endl;
}
if (std::regex_search(dimacsString, match, regex_second_input)) {
std::string numbers = match[1].str();
std::istringstream iss(numbers);
std::string number;
while (std::getline(iss, number, ',')) {
try {
v2.push_back(std::stoi(number));
} catch (const std::invalid_argument& e) {
std::cerr << "Invalid argument while converting to int: " << number << std::endl;
throw;
} catch (const std::out_of_range& e) {
std::cerr << "Out of range error while converting to int: " << number << std::endl;
throw;
}
}
} else {
std::cerr << "\nError: Could not find 'second input' section in the DIMACS string.\n" << std::endl;
}
}
mpz_class binaryStringToDecimal(const std::string& binaryString) {
mpz_class result;
result.set_str(binaryString, 2);
return result;
}
mpz_class processVector(const std::vector<int>& v, std::vector<int> vec) {
std::unordered_set<int> v_set(v.begin(), v.end());
std::string binaryString;
for (int k : vec) {
if (v_set.find(k) != v_set.end()) {
binaryString += '1';
} else if (v_set.find(-k) != v_set.end()) {
binaryString += '0';
} else {
binaryString += '0';
}
}
return binaryStringToDecimal(binaryString);
}
std::pair<mpz_class, mpz_class> convert(const std::vector<std::vector<int>>& v, const std::vector<int>& v1, const std::vector<int>& v2) {
if (v.empty()) {
throw std::runtime_error("\nError: Input vector 'v' is empty.\n");
}
const std::vector<int>& firstElement = v[0];
mpz_class d1 = processVector(firstElement, v1);
mpz_class d2 = processVector(firstElement, v2);
return {d1, d2};
}
// Define formula for max_tasks
int calculate_max_tasks(int num_vars, int num_clauses) {
int max_tasks = (num_clauses - num_vars);
return max_tasks;
}
void printWorkerCount(const std::string& version, int world_rank, int world_size) {
char processor_name[MPI_MAX_PROCESSOR_NAME];
int name_len;
MPI_Get_processor_name(processor_name, &name_len);
std::vector<char> all_names(world_size * MPI_MAX_PROCESSOR_NAME);
MPI_Gather(processor_name, MPI_MAX_PROCESSOR_NAME, MPI_CHAR,
all_names.data(), MPI_MAX_PROCESSOR_NAME, MPI_CHAR,
0, MPI_COMM_WORLD);
int worker_count = (world_rank != 0) ? 1 : 0;
int total_worker_count = 0;
MPI_Reduce(&worker_count, &total_worker_count, 1, MPI_INT, MPI_SUM, 0, MPI_COMM_WORLD);
if (world_rank == 0) {
total_worker_count += 1;
std::map<std::string, int> node_core_count;
for (int i = 0; i < world_size; ++i) {
std::string node_name(&all_names[i * MPI_MAX_PROCESSOR_NAME]);
node_core_count[node_name]++;
}
std::cout << "\n" << version << "\n" << std::endl;
for (const auto& [node_name, core_count] : node_core_count) {
std::cout << " " << node_name << " - " << core_count << " cores" << std::endl;
}
std::cout << "\n Total Cores: " << total_worker_count << std::endl;
}
}
void printHeadNodeDetails(mpz_class input_number, int num_bits, int num_clauses,
int num_vars, int max_tasks, bool override_max_tasks, int depth, int max_queues) {
std::cout << "\nInput Number: " << input_number << std::endl;
std::cout << " Bits: " << num_bits << std::endl;
std::cout << " Clauses: " << num_clauses << std::endl;
std::cout << " VARs: " << num_vars << std::endl;
std::cout << std::endl;
if (max_queues > 0) {
std::cout << " Queue size: " << max_queues << std::endl;
}
else if (max_tasks > 0 && !override_max_tasks) {
std::cout << " BFS #Tasks: " << max_tasks << std::endl;
}
else if (depth > 0 && override_max_tasks) {
std::cout << " Depth: " << depth << std::endl;
}
std::cout << std::endl;
}
std::string formatPercentage(double part, double total) {
double percentage = (total > 0.0) ? (part / total) * 100.0 : 0.0;
std::stringstream ss;
ss << std::fixed << std::setprecision(2) << percentage << "%";
return ss.str();
}
std::string formatFilename(const std::string& script_name, const std::string& filename, const std::string& problemID, const std::string& flag) {
std::string sanitizedFilename = filename;
size_t pos = sanitizedFilename.find(".dimacs");
if (pos != std::string::npos) {
sanitizedFilename = sanitizedFilename.substr(0, pos);
}
std::regex numberRegex(R"((\d{5})(\d+))");
sanitizedFilename = std::regex_replace(sanitizedFilename, numberRegex, "$1e$2");
std::string shortProblemID = problemID.substr(0, 5);
std::stringstream ss;
ss << script_name << "_" << sanitizedFilename << "_" << shortProblemID << "_" << flag << ".txt";
return ss.str();
}
void exportResultsToFile(const std::string& filename, const std::string& content) {
std::ofstream outFile(filename);
if (outFile.is_open()) {
outFile << content;
outFile.close();
} else {
std::cerr << "\nError: Could not write to file " << filename << std::endl;
std::cout << "\n" << std::endl;
std::terminate();
}
}
void generate_output(bool solution_found, const std::vector<std::vector<int>>& final_choices,
const std::chrono::duration<double>& bfs_duration, const std::chrono::duration<double>& dfs_duration,
int num_bits, int num_vars, int num_clauses, mpz_class input_number, int task_count,
const std::vector<int>& v1, const std::vector<int>& v2, const std::string& script_name,
const std::string& filename, const std::string& cli_flag, const std::string& output_directory,
int iterations, const size_t &initial_queue_size, int world_rank, int world_size) {
std::chrono::duration<double> ndp_duration = bfs_duration + dfs_duration;
std::ostringstream output_ss;
if (solution_found) {
auto [d1, d2] = convert(final_choices, v1, v2);
output_ss << "\n Process " << world_rank << " found a solution!\n\n"
<< "\nInput Number: " << input_number << "\n"
<< " FACT 1: " << d1 << "\n"
<< " FACT 2: " << d2 << "\n";
output_ss << (d1 * d2 == input_number ? " verified.\n" : " FALSE\n");
} else {
output_ss << "\n\nInput Number: " << input_number << "\n"
<< " Prime!\n";
}
output_ss << "\n Bits: " << num_bits;
output_ss << "\n VARs: " << num_vars;
output_ss << "\n Clauses: " << num_clauses;
output_ss << "\n\n BFS time: " << bfs_duration.count() << " seconds ("
<< formatPercentage(bfs_duration.count(), ndp_duration.count()) << ")\n"
<< " " << formatDuration(bfs_duration.count()) << "\n";
output_ss << " DFS time: " << dfs_duration.count() << " seconds ("
<< formatPercentage(dfs_duration.count(), ndp_duration.count()) << ")\n"
<< " " << formatDuration(dfs_duration.count()) << "\n";
output_ss << " NDP time: " << ndp_duration.count() << " seconds\n"
<< " " << formatDuration(ndp_duration.count()) << "\n";
output_ss << "\n Total Cores: " << world_size << "\n"
<< " Queue Size: " << initial_queue_size << "\n"
<< " Depth: " << iterations << "\n"
<< " Tasks: " << task_count << "\n";
output_ss << version << "\n"
<< " DIMACS: " << filename << "\n";
std::string utcTime = getCurrentUTCTime();
output_ss << " Zulu time: " << utcTime << "\n";
std::string problemID = createProblemID(input_number.get_str(), num_bits, world_size, utcTime);
output_ss << " Problem ID: " << problemID << "\n";
char processor_name[MPI_MAX_PROCESSOR_NAME];
int name_len;
MPI_Get_processor_name(processor_name, &name_len);
std::cout << output_ss.str();
std::string input_filename_only = std::filesystem::path(filename).filename().string();
std::string output_filename = formatFilename(script_name, input_filename_only, problemID, cli_flag);
std::string full_output_path = output_directory + "/" + output_filename;
exportResultsToFile(full_output_path, output_ss.str());
std::cout << "Result saved: " << full_output_path << "\n"
<< " On node: " << processor_name << "\n" << std::endl;
}
std::vector<int> flattenMatrix(const Matrix& matrix) {
std::vector<int> flat_matrix;
for (const auto& row : matrix) {
flat_matrix.push_back(row.size()); // Store row size for reconstruction
flat_matrix.insert(flat_matrix.end(), row.begin(), row.end());
}
return flat_matrix;
}
Matrix unflattenMatrix(const std::vector<int>& flat_matrix) {
Matrix matrix;
for (size_t i = 0; i < flat_matrix.size();) {
int row_size = flat_matrix[i++];
std::vector<int> row(flat_matrix.begin() + i, flat_matrix.begin() + i + row_size);
matrix.push_back(row);
i += row_size;
}
return matrix;
}
std::vector<std::vector<int>> process_queue(
std::queue<std::pair<std::vector<std::vector<int>>, std::vector<int>>> queue,
bool parallel, mpz_class input_number, int num_bits, int num_vars, int num_clauses,
std::vector<int>& v1, std::vector<int>& v2, std::chrono::high_resolution_clock::time_point bfs_start,
std::chrono::high_resolution_clock::time_point dfs_start, int task_count,
const std::string& script_name, const std::string& filename, const std::string& cli_flag,
const std::string& output_directory, bool override_max_tasks, int iterations,
size_t &initial_queue_size, int world_rank, int world_size, MPI_Comm mpi_comm) {
std::vector<std::vector<int>> final_choices;
std::chrono::duration<double> bfs_duration = dfs_start - bfs_start;
std::atomic<bool> solution_found(false);
if (parallel) {
if (world_rank == 0) {
std::cout << "\n\n BFS time: " << bfs_duration.count() << " seconds - DFS parallel initiated.."
<< std::endl;
}
auto dfs_start_time = std::chrono::high_resolution_clock::now();
std::thread time_printer([&]() {
if (world_rank == 0) {
while (!solution_found) {
std::this_thread::sleep_for(std::chrono::seconds(1));
auto now = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::seconds>(now - dfs_start_time);
std::cout << "\033[2K\r DFS time: " << elapsed.count() << " seconds" << std::flush;
}
}
});
if (world_rank == 0) { // Head Node: Task distribution
int active_workers_count = world_size - 1;
while (active_workers_count > 0 && !solution_found) {
MPI_Status status;
int worker_rank;
MPI_Recv(&worker_rank, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, mpi_comm, &status);
if (!queue.empty()) {
auto task = queue.front();
queue.pop();
std::vector<int> flat_matrix = flattenMatrix(task.first);
int flat_matrix_size = flat_matrix.size();
int choices_size = task.second.size();
// Send sizes first, followed by data
MPI_Send(&flat_matrix_size, 1, MPI_INT, worker_rank, 0, mpi_comm);
MPI_Send(flat_matrix.data(), flat_matrix_size, MPI_INT, worker_rank, 0, mpi_comm);
MPI_Send(&choices_size, 1, MPI_INT, worker_rank, 0, mpi_comm);
if (choices_size > 0) {
MPI_Send(task.second.data(), choices_size, MPI_INT, worker_rank, 0, mpi_comm);
}
} else {
--active_workers_count;
}
}
// If no solution is found after all tasks are distributed
if (!solution_found) {
generate_output(false, final_choices, bfs_duration,
std::chrono::high_resolution_clock::now() - dfs_start, num_bits, num_vars, num_clauses,
input_number, task_count, v1, v2, script_name, filename, cli_flag, output_directory,
iterations, initial_queue_size, world_rank, world_size);
std::terminate();
}
} else { // Worker Nodes: Request tasks and perform DFS
while (!solution_found) {
int flat_matrix_size, choices_size;
MPI_Status status;
// Request task from head
MPI_Send(&world_rank, 1, MPI_INT, 0, 0, mpi_comm);
MPI_Recv(&flat_matrix_size, 1, MPI_INT, 0, MPI_ANY_TAG, mpi_comm, &status);
if (status.MPI_TAG != 0) break; // Exit if no more tasks
// Receive the flat_matrix data
std::vector<int> flat_matrix(flat_matrix_size);
MPI_Recv(flat_matrix.data(), flat_matrix_size, MPI_INT, 0, 0, mpi_comm, &status);
MPI_Recv(&choices_size, 1, MPI_INT, 0, 0, mpi_comm, &status);
std::vector<int> choices(choices_size);
if (choices_size > 0) {
MPI_Recv(choices.data(), choices_size, MPI_INT, 0, 0, mpi_comm, &status);
}
// Convert flat matrix back to Matrix type and perform DFS
Matrix matrix = unflattenMatrix(flat_matrix);
auto new_choices = Satisfy_iterative(matrix, true);
for (const auto& nc : new_choices) {
std::vector<int> final_choices_i = choices;
final_choices_i.insert(final_choices_i.end(), nc.begin(), nc.end());
// Output and terminate if solution is found
generate_output(true, {final_choices_i}, bfs_duration,
std::chrono::high_resolution_clock::now() - dfs_start, num_bits, num_vars, num_clauses,
input_number, task_count, v1, v2, script_name, filename, cli_flag, output_directory,
iterations, initial_queue_size, world_rank, world_size);
solution_found.store(true);
std::terminate();
}
}
}
time_printer.join();
}
return final_choices;
}
std::string readFileToString(const std::string& filename) {
std::ifstream file(filename);
if (!file.is_open()) {
std::cerr << "\nError: Could not open file " << filename << std::endl;
return "";
}
std::ostringstream oss;
oss << file.rdbuf();
return oss.str();
}
void parseCLIOptions(int argc, char* argv[], int& max_queues, int& max_tasks, int& depth, bool& override_max_tasks) {
for (int i = 1; i < argc; ++i) {
std::string option = argv[i];
if (option == "-q" && i + 1 < argc) {
max_queues = std::stoi(argv[++i]);
override_max_tasks = false; // Queue limit disables task depth override
} else if (option == "-t" && i + 1 < argc) {
max_tasks = std::stoi(argv[++i]);
override_max_tasks = false; // CLI sets tasks, disables depth override
} else if (option == "-d" && i + 1 < argc) {
depth = std::stoi(argv[++i]);
override_max_tasks = true; // Depth set by CLI enables override
}
}
}
int main(int argc, char* argv[]) {
MPI_Init(&argc, &argv);
int world_rank, world_size;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
const int HEAD_NODE = 0;
int max_queues = -1;
int total_cores = sysconf(_SC_NPROCESSORS_ONLN);
int depth = 0;
int max_tasks = 0;
int num_bits = 0;
int num_vars = 0;
int num_clauses = 0;
int iterations = 0;
size_t initial_queue_size = 0;
bool override_max_tasks = false;
parseCLIOptions(argc, argv, max_queues, max_tasks, depth, override_max_tasks);
std::string filename = argv[1];
std::string fileContent = readFileToString(filename);
if (fileContent.empty()) {
throw std::runtime_error("\nError reading file or file is empty.\n");
}
std::smatch match;
std::regex regex_product(R"(Circuit for product = ([0-9]+) \[)");
std::regex regex_problem(R"(p cnf ([0-9]+) ([0-9]+))");
if (std::regex_search(fileContent, match, regex_problem)) {
num_vars = std::stoi(match[1].str());
num_clauses = std::stoi(match[2].str());
std::regex regex_bits(R"(Variables for second input \[msb,...,lsb\]: \[.*?,\s*(\d+)\])");
if (std::regex_search(fileContent, match, regex_bits)) {
num_bits = std::stoi(match[1].str());
}
} else {
std::cerr << "\nError: Could not extract number of variables and clauses from DIMACS header.\n" << std::endl;
return 1;
}
if (max_tasks == 0 && !override_max_tasks) {
max_tasks = calculate_max_tasks(num_vars, num_clauses);
depth = max_tasks;
}
mpz_class input_number;
if (std::regex_search(fileContent, match, regex_product)) {
input_number.set_str(match[1].str(), 10);
} else {
std::cerr << "\nError: Could not extract input number from DIMACS header.\n" << std::endl;
return 1;
}
printWorkerCount(version, world_rank, world_size);
MPI_Barrier(MPI_COMM_WORLD);
if (world_rank == 0) {
printHeadNodeDetails(input_number, num_bits, num_clauses, num_vars,
max_tasks, override_max_tasks, depth, max_queues);
}
std::string script_name = std::filesystem::path(argv[0]).stem().string();
if (argc < 2) {
std::cerr << "\nUsage: " << argv[0] << " <filename> [-d depth | -t max_tasks] [-q max_queues] [-o output_directory]" << std::endl;
return 1;
}
std::string output_directory = getWorkingDirectory();
std::string cli_flag = "auto";
if (argc >= 4) {
for (int i = 1; i < argc; ++i) {
std::string option = argv[i];
if (option == "-q") {
if (++i < argc) {
try {
max_queues = std::stoi(argv[i]);
cli_flag = "q" + std::to_string(max_queues);
} catch (const std::invalid_argument& e) {
std::cerr << "\nError: The queue limit argument must be an integer.\n" << std::endl;
return 1;
}
} else {
std::cerr << "\nError: Missing argument for -q option.\n" << std::endl;
return 1;
}
} else if (option == "-d") {
if (++i < argc) {
try {
depth = std::stoi(argv[i]);
cli_flag = "d" + std::string(argv[i]);
override_max_tasks = true;
} catch (const std::invalid_argument& e) {
std::cerr << "\nError: The depth argument must be an integer.\n" << std::endl;
return 1;
}
}
} else if (option == "-t") {
if (++i < argc) {
try {
max_tasks = std::stoi(argv[i]);
depth = max_tasks;
cli_flag = "t" + std::string(argv[i]);
} catch (const std::invalid_argument& e) {
std::cerr << "\nError: The max_tasks argument must be an integer.\n" << std::endl;
return 1;
}
}
} else if (option == "-o") {
if (++i < argc) {
output_directory = argv[i];
}
}
}
}
std::vector<std::vector<int>> clauses = parseDimacsString(fileContent);
if (clauses.empty()) {
throw std::runtime_error("\nError parsing DIMACS string.\n");
}
std::vector<int> v1;
std::vector<int> v2;
ExtractInputsFromDimacs(fileContent, v1, v2);
auto bfs_start = std::chrono::high_resolution_clock::now();
auto [results, task_count] = Satisfy_iterative_BFS(clauses, depth, max_tasks, override_max_tasks, iterations, max_queues, world_rank, initial_queue_size);
const size_t &locked_initial_queue_size = initial_queue_size; // Lock initial queue size
auto dfs_start = std::chrono::high_resolution_clock::now();
process_queue(results, true, input_number, num_bits, num_vars, num_clauses, v1, v2, bfs_start, dfs_start, task_count,
std::filesystem::path(argv[0]).stem().string(), filename, "auto", getWorkingDirectory(), override_max_tasks, iterations,
initial_queue_size, world_rank, world_size, MPI_COMM_WORLD);
Matrix A; // BFS input data
MPI_Barrier(MPI_COMM_WORLD);
MPI_Finalize();
close(dev_null);
return 0;
}
|