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
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
|
#include <iostream>
#include <fstream>
#include <iomanip>
//#include "varpar.h"
#include <stdlib.h>
#include <math.h>
#include <list>
#include <stdio.h>
#include <vector>
#include "cfg.h"
#include <string.h>
#include <cmath>
//HR
//#define EPSILON 0.001
#define EPSILON 0.00001
//HR: Add for hash_set
#if __GNUC__ < 3 && __GNUC__ >= 2 && __GNUC_MINOR__ >= 95
# include <hash_set>
# include <functional>
# define gnu_namespace std
#elif __GNUC__ >= 3
# include <ext/hash_set>
# if __GNUC_MINOR__ == 0
# include <functional>
# define gnu_namespace std
# else
# include <ext/functional>
# define gnu_namespace __gnu_cxx
# endif
#else
# include <hash_set.h>
# include <functional.h>
# define gnu_namespace std
#endif
using namespace gnu_namespace;
#include <set>
//
using namespace std;
#define MARK 9e99
#define LOG_ZERO -1e101
//HR: add from UpdateHR.h to deal with the problem in sum = 0 in comp_post()
//call by reference to the original value
//the log sum result is stored in logA
#define epsilon 1.0e5
bool logSpecValEquals(double logX, double logSpecVal){
return (logX >= logSpecVal - epsilon && logX <= logSpecVal + epsilon);
}
void logAddComp(double & logA, double & logB){
//if(logA == MARK){
if(logSpecValEquals(logA, MARK)){
logA = logB;
}
//else if (logA == LOG_ZERO){
else if (logSpecValEquals(logA, LOG_ZERO)){
logA = logB;
}
//else if(logB == MARK){
else if(logSpecValEquals(logB, MARK)){
logA = logA;
}
//else if(logB == LOG_ZERO){
else if(logSpecValEquals(logB, LOG_ZERO)){
logA = logA;
}
//Neither logA nor logB is MARK/LOG_ZERO
else{
//1
if(logA < 0 && logB < 0 ){
//1.1
//Gaurd logB-logA <= 100 to avoid that exp(logB-logA) go to inf
if(logB - logA <= 100 ){
logA = logA + log( 1 + exp(logB-logA) );
}
//1.2
//if logB - logA > 100, then logB > 100 + logA so that B is much bigger than A (B > e^100 * A)
// So (A + B) almost = B
else{
//logA = logB;
//The following is the real formula,; but it is almost same as //logA = logB;
logA = logB + log( exp(logA - logB) + 1);
}
}
//2
else if(logA > 0 && logB > 0){
//always make exp(.): . > 0
if(-logB + logA <= 100){
//2.1
logA = -( -logA + log( 1 + exp(-logB+logA) ) );
}
else{
//2.2
logA = -( -logB + log( 1 + exp(-logA+logB) ) );
}
}
//3
else if(logA < 0 && logB > 0){
//3.1
if(logA + logB > 0){
if(logA + logB <= 100){
//3.1.2
logA = -logB + log( exp(logA + logB) - 1 );
}
else{
//3.1.1
logA = logA + log( 1 - exp(-logB-logA) );
}
}
//3.2
else if(logA + logB < 0){
if(-logA - logB <= 100){
//3.2.2
logA = -( logA + log( exp(-logB-logA) - 1) );
}
else{
//3.2.1
logA = - ( -logB + log(1 - exp(logA+logB) ) );
}
}
//3.3
else{
logA = LOG_ZERO;
}
}
//4
else if(logA > 0 && logB < 0){
//4.1
if(logA + logB > 0){
if(logA + logB <= 100){
//4.1.2
logA = -logA + log( exp(logB+logA) - 1);
}
else{
//4.1.1
logA = logB + log( 1 - exp(-logA-logB) );
}
}
//4.2
else if(logA + logB < 0){
if(-logA-logB <= 100){
//4.2.2
logA = -( logB + log( exp(-logA-logB) - 1) );
}
else{
//4.2.1
logA = -( -logA + log(1 - exp(logB+logA)) );
}
}
//4.3
else{
logA = LOG_ZERO;
}
}
}
} // end of void logAddComp(double & logA, double & logB)c
//HR: Note: The whole program supposes that max no. of vars = 32 and hardcord 32
//Convert the parent set to the appropriate variable set
//HR:F
varset_t parset2varset(int v, varset_t set){
varset_t sinkleton = 1U<<v;
varset_t mask = sinkleton - 1;
varset_t low = set & mask;
varset_t high = set & ~mask;
return (high<<1) | low;
}
/*================================================================*/
//class for bnets
//HR:F
//for (net, score) pair
// each net[j] (0 <= j <= 32-1) is the binary repres of the parents
class net_set{
public:
score_t score;
varset_t net[32];
net_set(){
score=0.0000;
for(int j=0;j<32;j++){
net[j]=0;
}
}
friend int operator<(net_set s1,net_set s2);
friend int operator==(net_set s1,net_set s2);
friend int operator>(net_set s1,net_set s2);
friend bool same_obj(net_set s1, net_set s2, int nof_vars);
};
//HR:F
/*================================================================*/
int operator<(net_set s1,net_set s2){
if(fabs(s1.score-s2.score)<EPSILON){
return false;
}
return(s1.score<s2.score);
}
int operator>(net_set s1,net_set s2){
if(fabs(s1.score-s2.score)<EPSILON){
return false;
}
return(s1.score>s2.score);
}
int operator==(net_set s1,net_set s2){
return(fabs(s1.score-s2.score)<EPSILON);
}
//HR: check whether s1 and s2 are the same
bool same_obj(net_set s1, net_set s2, int nof_vars){
bool flag=true;
for(int j=0;j<nof_vars;j++){
if(s1.net[j]!=s2.net[j]){
//cout<<"************************";
flag=false;
break;
}
}
//cout<<"Flag "<<flag;
// if(flag==true)
// {
// if(fabs(s1.score-s2.score)<0.1)
// flag=true;
// else flag=false;
// }
return(flag);
}
//HR: check whether s1 and s2 are the same
bool same_obj(net_set s1, net_set s2){
bool flag=true;
for(int j=0;j<MAX_NOF_VARS;j++){
if(s1.net[j]!=s2.net[j]){
//cout<<"************************";
flag=false;
break;
}
}
//cout<<"Flag "<<flag;
// if(flag==true)
// {
// if(fabs(s1.score-s2.score)<0.1)
// flag=true;
// else flag=false;
// }
return(flag);
}
//
/*================================================================*/
//HR:F
//HR: Refined
void insert_vec(list<net_set>* v,net_set s, int k, int nof_vars){
list<net_set>::iterator it;
//HR: can improve its time
//first check whether v->size() > 0 && s < v->back()
//see Lav's comment
bool flag=false;
//HR: Refined
//
if( (v->size() > 0) && (s < v->back()) ){
v->push_back(s);
flag=true;
}
else{
//
for(it=v->begin();it!=v->end();it++){
if(same_obj(s,*it,nof_vars)){
// cout<<"Same object so not inserted!!!!!!!!!!!!!"<<endl;
flag=true;
break;
}
else if(s>(*it)){
// cout<<"score of s:"<<s.score<<"Score of kbnet element "<<(*it).score<<endl;
v->insert(it,s);
flag=true;
break;
}
}
}
if(flag==false){
v->push_back(s);
}
if(v->size()>k){
v->pop_back();
}
//v->unique();
}
/*================================================================*/
//class for bparents
//HR:F
//HR: (variable set, score) pair
class score_network{
public:
score_t scores;
varset_t vset;
friend int operator<(score_network s1,score_network s2);
friend int operator==(score_network s1,score_network s2);
friend int operator>(score_network s1,score_network s2);
friend bool same_obj(score_network s1, score_network s2);
};
//HR:F
int operator<(score_network s1,score_network s2){
if(fabs(s1.scores-s2.scores)<EPSILON){
return false;
}
return(s1.scores<s2.scores);
}
int operator>(score_network s1,score_network s2){
if(fabs(s1.scores-s2.scores)<EPSILON){
return false;
}
return(s1.scores>s2.scores);
}
int operator==(score_network s1,score_network s2){
return(fabs(s1.scores-s2.scores)<EPSILON);
}
bool same_obj(score_network s1, score_network s2){
return((s1==s2)&&(s1.vset==s2.vset));
}
void insert_vec(list<score_network>* v,score_network s, int k)
{
list<score_network>::iterator it;
if( s < v->back())
{
v->push_back(s);
}
else
{
for(it=v->begin();it!=v->end();it++)
{
// if(same_obj(s,*it))
// {
// break;
// }
// else
if(s>(*it))
{
v->insert(it,s);
break;
}
}
}
if(v->size()>k)
{
v->pop_back();
}
}
/*================================================================*/
//class for node
//HR:F
class node{
public:
int ip;
int in;
score_t score;
node(int x, int y, score_t z){
ip=x;
in=y;
score=z;
}
friend int operator<(node s1,node s2);
friend int operator==(node s1,node s2);
friend int operator>(node s1,node s2);
friend bool same_obj(node s1, node s2);
};
/*================================================================*/
int operator<(node s1,node s2){
if(fabs(s1.score-s2.score)<EPSILON){
return false;
}
return(s1.score<s2.score);
}
int operator>(node s1,node s2){
if(fabs(s1.score-s2.score)<EPSILON){
return false;
}
return(s1.score>s2.score);
}
int operator==(node s1,node s2){
return(fabs(s1.score-s2.score)<EPSILON);
}
bool same_obj(node s1, node s2){
return((s1==s2)&&(s1.ip==s2.ip)&&(s1.in==s2.in));
}
/*================================================================*/
//HR: F
void print_queue(list<net_set> v[],int size,int nof_vars){
list<net_set>::iterator iter;
for(int j=0;j<size;j++){
for(iter=v[j].begin();iter!=v[j].end();iter++){
//HR:
//kbnetscore[j] can have at most k (net, score) pairs
cout<<"kbnetscore "<<j<<" Score:"<<(*iter).score<<" net ";
for(int p=0;p<nof_vars;p++){
cout<<(*iter).net[p];
}
cout<<endl;
}
}
}
//HR: Add
void print_netscore(net_set ns,int nof_vars){
cout<<"netscore "<<" Score:"<<ns.score<<" \tnet "; //<<endl;
for(int p=0;p<nof_vars;p++){
cout<<ns.net[p] << " ";
}
cout<<endl;
cout<<endl;
}
//
void print_queue(vector<score_network>* v){
vector<score_network>::iterator iter;
for(iter=v->begin();iter!=v->end();iter++){
cout<<"bparents "<<(*iter).vset<<","<<(*iter).scores<<" ,, ";
}
}
void print_queue(list<node>* v){
list<node>::iterator iter;
cout<<"fringe"<<endl;
for(iter=v->begin();iter!=v->end();iter++){
cout<<" ip "<<(*iter).ip<<", in "<<(*iter).in<<" score "<<(*iter).score;
}
}
void print_queue(vector<net_set>* v,int nof_vars){
vector<net_set>::iterator iter;
for(iter=v->begin();iter!=v->end();iter++){
// cout<<" "<<(*iter).bsps<<","<<(*iter).scores;
cout<<"bnets "<<" Score:"<<(*iter).score<<" net "<<endl;
for(int p=0;p<nof_vars;p++){
cout<<(*iter).net[p];
}
}
}
void print_queue(list<net_set>* v,int nof_vars){
list<net_set>::iterator iter;
for(iter=v->begin();iter!=v->end();iter++){
// cout<<" "<<(*iter).bsps<<","<<(*iter).scores;
cout<<"kbnet "<<" Score:"<<(*iter).score<<" net "<<endl;
for(int p=0;p<nof_vars;p++){
cout<<(*iter).net[p];
}
}
}
//HR: call insert_vec(&fringe,n,k);
//HR: by this way, fringe is in descending order
//HR: Lav's code is wrong
//HR: corrected
void insert_vec(list<node>* v,node s, int k){
list<node>::iterator it;
//HR: test
//bool sameObj = false;
//bool inserted = false;
//
//if( s < v->back()){ same
if( (v->size() == 0) || (s < v->back())){
v->push_back(s);
}
else{
for(it=v->begin();it!=v->end();it++){
//comment it out will give the different answer. Because Lav's original is wrong, it will still insert the same object. It will eventually pop the correct end > k
//
if(same_obj(s, *it)){
break;
// sameObj = true;
// cout << "s: ";
// print_node(s);
// cout << "*it: ";
// print_node(*it);
// cout << endl;
// print_queue(v);
}
else{
//
if(s>(*it)){
v->insert(it,s);
//inserted = true;
break;
}
}
}
//HR: test
// if(sameObj == true && inserted == true){
// cout << "Error: sameObj == true && inserted = true" << endl;
// cout << "s: ";
// print_node(s);
// print_queue(v);
// }
}
if(v->size()>k){
//cout << "\n\nv->size()>k happens, v->pop_back()\n" << endl;
v->pop_back();
}
// cout<<"Inserted:"<<endl;
}
//===================================================================//
//HR: Add hash_set to store net_set (i.e. (net, score) pair
namespace gnu_namespace {
template<>
struct hash<const net_set*> {
hash<unsigned> hasher_ns;
size_t operator()(const net_set* ns) const {
return hasher_ns((unsigned) roundl(- ns->score*10)); // wrong hash function??
}
}; //end of struct
} //end of namespace
struct eqNetScore{
bool operator()(const net_set* ns1, const net_set* ns2) const{
return same_obj(*ns1, *ns2);
}
};
typedef hash_set<const net_set *, hash<const net_set *>, eqNetScore> NetScoreHashSet;
NetScoreHashSet knets;
//HR: Add
void print_nsHashSet(NetScoreHashSet nsHSet, int nof_vars){
for(NetScoreHashSet::iterator it = nsHSet.begin(); it != nsHSet.end(); it++){
print_netscore(**it, nof_vars);
}
}
//
//=====================================================================================//
/*================================================================*/
//HR:F
//HR: call gettopk(&bnets,&bparents,&kbnetscore[varset],k,sink,nof_vars);
void gettopk(vector<net_set>* bnets, vector<score_network>* bparents, list<net_set>* kbnet, int k, varset_t sink,int nof_vars){
int h;
int ipmax=bparents->size();
// cout<<"ipmax: "<<ipmax;
int inmax=bnets->size();
// cout<<"inmax: "<<inmax;
//HR: Add hash_set generated here
//
int ip,in;
net_set * netwP;
score_t score;
list<node> fringe;
//HR: different from Algo4, here start from 0 vs. 1
node n(0,0,(bparents->at(0)).scores + (bnets->at(0)).score);
insert_vec(&fringe,n,k);
// print_queue(&fringe);
// scanf("%d",&h);
NetScoreHashSet::iterator iter1;
while(!fringe.empty()){
// cout<<"Fringe not empty"<<endl;
n = fringe.front();
fringe.pop_front();
// cout<<"Fringe After popping"<<endl;
// print_queue(&fringe);
ip=n.ip;
in=n.in;
score=n.score;
// cout<<"Popped node"<<endl;
// cout<<"ip "<<ip<<"in "<<in<<"score "<<score<<endl;
if((kbnet->size())<k){
// cout<<"Size < k"<<endl;
//HR: Add
//net_set netw;
//
netwP = new net_set();
for(int j=0;j<nof_vars;j++){
(*netwP).net[j]=(bnets->at(in)).net[j];
// cout<<"Net w j"<<netw.net[j]<<endl;
}
(*netwP).net[sink]=((bparents->at(ip)).vset);
//cout<<"net w sinkleton"<<netw.net[sinkleton]<<endl;
(*netwP).score=score;
//cout<<"net score "<<netw.score<<endl;
//cout<<"Before inserting:"<<endl;
// print_queue(kbnet,nof_vars);
//HR: Add hash_set knets check here
//if not find netw
if((iter1 = knets.find(netwP)) == knets.end()){
//Lav
//every time call by value of netw
insert_vec(kbnet, *netwP, k, nof_vars);
//cout<<"After inserting"<<endl;
//print_queue(kbnet,nof_vars);
//scanf("%d",&h);
//cout<<"Inserted into kbnetscore"<<endl;
//
//HR: Add to knets
knets.insert(netwP);
}
else{
if( same_obj(*netwP, **iter1, nof_vars) == false ){
cout<<"Error: same_obj(*netwP, **iter1, nof_vars) == false"<<endl;
return;
}
//delete the memory
delete netwP;
}
//
}
else if((fabs(score-(kbnet->back()).score)>EPSILON)&&(score>(kbnet->back().score))){
// cout<<"score>kbnetback's score"<<endl;
//HR: Add
//net_set netw;
//
netwP = new net_set();
for(int j=0;j<nof_vars;j++){
(*netwP).net[j]=(bnets->at(in)).net[j];
// cout<<"Net w j"<<netw.net[j]<<endl;
}
(*netwP).net[sink]=(bparents->at(ip)).vset;
//cout<<"net w sinkleton"<<netw.net[sinkleton]<<endl;
(*netwP).score=score;
//cout<<"net score"<<netw.score<<endl;
//cout<<"Before inserting:"<<endl;
// print_queue(kbnet,nof_vars);
//HR: Add hash_set knets check here
//if not find
if((iter1 = knets.find(netwP)) == knets.end()){
net_set lastNs = kbnet->back();
//Lav
insert_vec(kbnet,*netwP,k,nof_vars);
//cout<<"After inserting"<<endl;
//print_queue(kbnet,nof_vars);
//scanf("%d",&h);
//
//HR: Add to knets
knets.insert(netwP);
iter1 = knets.find(&lastNs);
if(iter1 == knets.end()){
cout << "Error: iter1 should != knets.end() since lastNs should be found in kents" << endl;
return;
}
const net_set * nsTempP = * iter1;
knets.erase(&lastNs); //do not remove
delete nsTempP;
//HR: remove from kbnet has been done inside knets.insert(netwP);
}
else{
if( same_obj(*netwP, **iter1, nof_vars) == false ){
cout<<"Error: same_obj(*netwP, **iter1, nof_vars) == false"<<endl;
return;
}
//delete the memory
delete netwP;
}
}
else{
return;
}
//HR: since start from 0 not 1; so use ip<ipmax-1
if(ip<ipmax-1){
//cout<<"before child:"<<endl;
node child(ip+1,in,(bparents->at(ip+1)).scores + (bnets->at(in)).score);
//cout<<"after child"<<endl;
//cout<<"Fringe before inserting:"<<endl;
//print_queue(&fringe);
//may add hash_set generated check here
insert_vec(&fringe,child,k);
//cout<<"Fringe after inserting"<<endl;
//print_queue(&fringe);
//scanf("%d",&h);
}
if(in<inmax-1){
// cout<<"Fringe before inserting:"<<endl;
// print_queue(&fringe);
node child(ip,in+1,(bparents->at(ip)).scores + (bnets->at(in+1)).score);
//may add hash_set generated check here
insert_vec(&fringe,child,k);
//cout<<"Fringe after inserting"<<endl;
// print_queue(&fringe);
// scanf("%d",&h);
}
}//end of while
// scanf("%d",&h);
}
/*================================================================*/
//converts from the best parent sets obtained to actual variable set
//HR: call conv_net(&kbnetscore[nof_combs-1],k,nof_vars);
//HR:F
void conv_net(list<net_set>* kbnet, int k,int nof_vars){
list<net_set>::iterator it;
//int j=0;
//each it is one of k best
for(it=kbnet->begin();it!=kbnet->end();it++){
for(int p=0;p<nof_vars;p++){
(*it).net[p]=parset2varset(p,((*it).net[p]));
// j++;
}
}
}
/*================================================================*/
//To convert net string into arc set
//HR: call net2arc(dirname,k,nof_vars);
//HR:F
void net2arc(char* dirname,int k,int nof_vars){
score_t s;
string str;
unsigned int vset;
char str1[32];
//HR: for each j'th best network
for(int j=0;j<k;j++){
str.assign(dirname);
str.append("/");
sprintf(str1,"%d",j);
str.append(str1);
str.append("net");
FILE* netf=fopen(str.c_str(),"r");
if(netf==NULL)
break;
str.assign(dirname);
str.append("/");
str.append("arc");
sprintf(str1,"%d",j);
str.append(str1);
FILE* arcf=fopen(str.c_str(),"w");
fscanf(netf,"%f",&s);
// printf("\n ===network %d",j);
for(int p=0;p<nof_vars;p++){
// printf("\n\nVar %d's parents:\n\n",p);
fscanf(netf,"%u",&vset);
const int SHIFT = 8 * sizeof( unsigned ) - 1;
const unsigned MASK = 1 << SHIFT;
for ( int i = 1; i <= SHIFT + 1; i++ ) {
// cout << ( vset & MASK ? '1' : '0' );
if(vset&MASK){
fprintf(arcf,"%u %d",SHIFT+1-i,p);
fprintf(arcf,"\n");
}
vset <<= 1;
}
// printf("\n\n");
}
fclose(netf);
fclose(arcf);
}
}
/*================================================================*/
//Write net file
//HR: call write_net(kbnetscore,dirname,k,nof_vars);
//HR: get files: 0net, 1net, ..., (k-1)net
void write_net(list<net_set> kbnetscore[],char* dirname,int k,int nof_vars)
{
string str;
list<net_set>::iterator it;
char str1[10];
int j=0;
//HR: each it is the one of the k best
for(it=kbnetscore[(1U<<(nof_vars))-1].begin();it!=kbnetscore[(1U<<(nof_vars))-1].end();it++){
str.assign(dirname);
str.append("/");
sprintf(str1,"%d",j++);
str.append(str1);
str.append("net");
FILE* netf=fopen(str.c_str(),"w");
fprintf(netf,"%f \n",(*it).score);
// cout<<(*it).score<<endl;
for(int p=0;p<nof_vars;p++){
// (*it).net[p]=parset2varset(
fprintf(netf,"%u \n",(*it).net[p]);
}
fclose(netf);
}
}
/*================================================================*/
void print_scores(list<net_set> kbnetscore[],char* dirname,int k,int nof_vars){
// string str;
list<net_set>::iterator it;
int j=0;
for(j=0;j<((1U<<nof_vars)-1);j++)
for(it=kbnetscore[j].begin();it!=kbnetscore[j].end();it++){
cout<<(*it).score<<endl;
}
}
/*================================================================*/
//HR: Add
//HR: Update from comp_post_compl, now compute the exact post. prob. using
// denominator P(D) instead of \hat{P}(D) = \sum{G \in the set of k best G's} P(G,D)
// require exactPD.txt (computed by POSTER) is stored under the directory
//Compute each edge out of nof_vars * nof_vars, instead of just the best network
void comp_postExact_compl(list<net_set>* kbnet, int k, char* dirname, int nof_vars){
//cout << "Start comp_postExact_compl()" << endl;
//long double Sum=0.0;
//double logSum = LOG_ZERO;
list<net_set>::iterator it;
//HR: assume k < 5000
long double postExact[5000];
string str;
char str1[32];
//cout << "dirname = " << dirname << endl;
str.assign(dirname);
str.append("/");
str.append("exactPD.txt");
//str.assign("exactPD.txt");
FILE *fp;
fp=fopen(str.c_str(),"r");
double exactPD = 0.0;
if(!feof(fp)){
char c;
fscanf(fp, "%lf", &exactPD);
fscanf(fp,"%c",&c);
}
fclose(fp);
//printf("exactPD = %18.8f\n", exactPD);
str.assign(dirname);
str.append("/netpostExact");
fp=fopen(str.c_str(),"w");
//for each it of k best networks
// for(it=kbnet->begin();it!=kbnet->end();it++){
// //HR: change it
// //sum+=exp((*it).score);
// logAddComp(logSum, (*it).score); //HR
// }
// cout << "logSum: " << logSum << endl; //HR
// printf("logSum = %18.6f\n", logSum);
// //
// long double Sum = exp(logSum); //HR
// cout << "Sum: " << exp(logSum) << endl; //HR
//
int i=0;
//for each it of k best networks, compute equation (4)
//each post[i] ( 0 <= i <= k - 1). repre post prob for i'th best network
for(it=kbnet->begin();it!=kbnet->end();it++){
//post[i]=(exp((*it).score))/sum;
//double logScore = (*it).score;
//LOGMINUS_NEW(logScore, logSum)
postExact[i]=exp( (*it).score - exactPD ); //
fprintf(fp,"%Lg\n",postExact[i]);
i++;
}
fclose(fp);
//Start the update
//define and init
long double postProbExact[nof_vars][nof_vars];
for(int i = 0; i < nof_vars; i++){
for (int j = 0; j < nof_vars; j++){
postProbExact[i][j] = 0.0;
}
}
int listSize = kbnet->size();
int num1 = -1;
int num2 = -1;
//HR: for each j of k best networks, j >=1
for(int j=0; j<listSize; j++){
str.assign(dirname);
str.append("/");
str.append("arc");
sprintf(str1,"%d",j);
str.append(str1);
fp=fopen(str.c_str(),"r");
// fp=fopen(str.c_str(),"r");
//HR: for each edge in j'th best network
while(!feof(fp)){
char c;
fscanf(fp,"%d",&num1);
fscanf(fp,"%d",&num2);
fscanf(fp,"%c",&c);
postProbExact[num1][num2] += postExact[j];
//HR: needed! why? Otherwise there is error. fscanf() could not exactly overwrite the content of &num1/&num2
num1 = -1;
num2 = -1;
}//HR: end of while(!feof(fp));
fclose(fp);
}//HR: end of for
str.assign(dirname);
str.append("/postProbExactEachEdge.txt");
ofstream totalOf1(str.c_str());
for(int i = 0; i < nof_vars; i++){
for (int j = 0; j < nof_vars; j++){
totalOf1 << "" << j << " -> " << i << " \t" << postProbExact[j][i] << endl;
}
}
} //end void comp_postExact_compl()
//HR: Add
//HR: Update from comp_post
//Compute each edge out of nof_vars * nof_vars, instead of just the best network
void comp_post_compl(list<net_set>* kbnet, int k, char* dirname, int nof_vars){
//long double Sum=0.0;
double logSum = LOG_ZERO;
list<net_set>::iterator it;
//HR: assume k < 5000
long double post[5000];
string str;
char str1[32];
str.assign(dirname);
str.append("/netpost");
FILE *fp=fopen(str.c_str(),"w");
//for each it of k best networks
for(it=kbnet->begin();it!=kbnet->end();it++){
//HR: change it
//sum+=exp((*it).score);
logAddComp(logSum, (*it).score); //HR
}
//cout << "logSum: " << logSum << endl; //HR
//printf("logSum = %18.6f\n", logSum);
//
long double Sum = exp(logSum); //HR
//cout << "Sum: " << exp(logSum) << endl; //HR
//
int i=0;
//for each it of k best networks, compute equation (4)
//each post[i] ( 0 <= i <= k - 1). repre post prob for i'th best network
for(it=kbnet->begin();it!=kbnet->end();it++){
//post[i]=(exp((*it).score))/sum;
//double logScore = (*it).score;
//LOGMINUS_NEW(logScore, logSum)
post[i]=exp( (*it).score - logSum ); //
fprintf(fp,"%Lg\n",post[i]);
i++;
}
fclose(fp);
//Start the update
//define and init
long double postProb[nof_vars][nof_vars];
for(int i = 0; i < nof_vars; i++){
for (int j = 0; j < nof_vars; j++){
postProb[i][j] = 0.0;
}
}
int listSize = kbnet->size();
int num1 = -1;
int num2 = -1;
//HR: for each j of k best networks, j >=1
for(int j=0; j<listSize; j++){
str.assign(dirname);
str.append("/");
str.append("arc");
sprintf(str1,"%d",j);
str.append(str1);
fp=fopen(str.c_str(),"r");
// fp=fopen(str.c_str(),"r");
//HR: for each edge in j'th best network
while(!feof(fp)){
char c;
fscanf(fp,"%d",&num1);
fscanf(fp,"%d",&num2);
fscanf(fp,"%c",&c);
postProb[num1][num2] += post[j];
//HR: needed! why? Otherwise there is error. fscanf() could not exactly overwrite the content of &num1/&num2
num1 = -1;
num2 = -1;
}//HR: end of while(!feof(fp));
fclose(fp);
}//HR: end of for
str.assign(dirname);
str.append("/postProbEachEdge.txt");
ofstream totalOf1(str.c_str());
for(int i = 0; i < nof_vars; i++){
for (int j = 0; j < nof_vars; j++){
totalOf1 << "" << j << " -> " << i << " \t" << postProb[j][i] << endl;
}
}
}
//Computation of posterior probabilities - This function's call has been commented. Remove the commenting slashes if the posterior probability needs to be computed.
//HR: call comp_post(&kbnetscore[nof_combs-1],k,dirname);
void comp_post(list<net_set>* kbnet, int k, char* dirname){
//long double Sum=0.0;
double logSum = LOG_ZERO;
list<net_set>::iterator it;
long double post[5000];
string str;
char str1[32];
str.assign(dirname);
str.append("/netpost");
FILE *fp=fopen(str.c_str(),"w");
//for each it of k best networks
for(it=kbnet->begin();it!=kbnet->end();it++){
//HR: change it
//sum+=exp((*it).score);
logAddComp(logSum, (*it).score); //HR
}
cout << "logSum: " << logSum << endl; //HR
//
long double Sum = exp(logSum); //HR
cout << "Sum: " << exp(logSum) << endl; //HR
//
int i=0;
//for each it of k best networks, compute equation (4)
//each post[i] ( 0 <= i <= k - 1). repre post prob for i'th best network
for(it=kbnet->begin();it!=kbnet->end();it++){
//post[i]=(exp((*it).score))/sum;
//double logScore = (*it).score;
//LOGMINUS_NEW(logScore, logSum)
post[i]=exp( (*it).score - logSum ); //
fprintf(fp,"%Lg\n",post[i]);
i++;
}
fclose(fp);
ifstream indata;
int n=0;
int num[50][2];
int num1,num2;
// char f[50][20];
long double postf[50];
str.assign(dirname);
str.append("/");
str.append("arc0");
fp=fopen(str.c_str(),"r");
// fp=fopen(str.c_str(),"r");
i=0;
while(!feof(fp)){
char c;
//HR: for parent
fscanf(fp,"%d",&num[i][0]);
//HR: for var
fscanf(fp,"%d",&num[i][1]);
fscanf(fp,"%c",&c);
//indata>>num[i][1];
//HR:
// cout<<"HIIIII"<<num[i][0]<<"'"<<num[i][1]<<endl;
// indata.getline(f[i],100);
i++;
}
//HR:
//i: the no. of lines in the arc0; so only for the edges in the best network
n=i-1;
cout<<n<<endl;
//HR: postf vs. post
//HR: due to equality (5)
for(i=0;i<n;i++){
postf[i]=post[0];
}
//indata.close();
fclose(fp);
int j;
//HR: for each j of k best networks, j >=1
for(j=1;j<k;j++){
str.assign(dirname);
str.append("/");
str.append("arc");
sprintf(str1,"%d",j);
str.append(str1);
fp=fopen(str.c_str(),"r");
// fp=fopen(str.c_str(),"r");
//HR: for each edge in j'th best network
while(!feof(fp)){
char c;
fscanf(fp,"%d",&num1);
fscanf(fp,"%d",&num2);
fscanf(fp,"%c",&c);
// indata>>num1;
// indata>>num2;
//HR:
// cout<<endl<<endl<<endl<<num1<<",,,"<<num2<<endl;
//HR: check whether such edge is one of the edeges in the best network 0net
for(i=0;i<n;i++){
// if(!strcmp(str1,f[i]))
//HR: if such edge is one of the edeges in the best network 0net
if(num1==num[i][0]&&num2==num[i][1]){
postf[i]+=post[j];
//HR: can add break; since each edge out of n edges in the best net is different
}
}
num1=num2=-1;
}//HR: end of while(!feof(fp));
fclose(fp);
}//HR: end of for
//HR: print out the posterior prob. for each edge in the best network
for(j=0;j<n;j++)
cout<<postf[j]<<endl;
}
/*================================================================*/
//inside it: get_top_k for the features
//HR:F
void get_kbest_nets(int nof_vars, FILE** fp,int k, char* dirname){
int h;
//HR: 2^nof_vars
varset_t nof_combs = 1U<<(nof_vars);
//HR:
//cout<<"No of combs: "<<nof_combs<<endl;
//cout<<"Get k best nets"<<endl;
//
//cout << "before list<net_set> kbnetscore[nof_combs]" << endl;
//cerr << "before list<net_set> kbnetscore[nof_combs]" << endl;
//HR: net_set is the (net, score) pair
//HR: have not yet set each list kbnetscore[W] the size k
list<net_set> kbnetscore[nof_combs];
//cerr << "after list<net_set> kbnetscore[nof_combs]" << endl;
//cout << "after list<net_set> kbnetscore[nof_combs]" << endl;
list<net_set>::iterator it;
vector<net_set> bnets;
//HR: score_network is (variable set, score) pair
score_network s;
vector<score_network> bparents;
//HR: Add hash_set knets here; global may be better so that gettopk can access
//NetScoreHashSet knets;
//
//cout << "before net_set netw" << endl;
net_set netw;
netw.score=0;
for(int j=0;j<nof_vars;j++)
netw.net[j]=0;
kbnetscore[0].push_back(netw);
//cout << "before insert_vec(&kbnetscore[0],netw,k,nof_vars)" << endl;
//HR
insert_vec(&kbnetscore[0],netw,k,nof_vars);
//HR: call void print_queue(list<net_set> v[],int size,int nof_vars)
//cout << "print_queue(kbnetscore)" << endl;
//print_queue(kbnetscore,(1U<<nof_vars),nof_vars);
// scanf("%d",&h);
// cout<<"Pushed!!!"<<endl;
//
varset_t varset;
int sink;
//HR: W \subset V except empty set;
//HR: varset is the binary repre of W
for(varset=1;varset<nof_combs;varset++){
//HR
// if(varset % 10000 == 1){
// cout<<"====Varset==="<<varset<<endl; //
// }
//
//HR: Add for hash_set knets
//totally clean
//cout << "knets.clear() begins:" << endl;
int knetsSize = knets.size() ;
const net_set * nsPtrA[knetsSize];
int j = 0;
for(NetScoreHashSet::iterator it = knets.begin(); it != knets.end(); it++){
nsPtrA[j++] = *it;
}
knets.clear();
//really delete each object
for(j = 0; j < knetsSize; j++){
delete nsPtrA[j]; //delete (*nsPtrA[j]) is wrong
}
//cout << "knets.clear() ends." << endl;
//
//HR: for each sink
for(sink = 0; sink<nof_vars;sink++){
// cout<<"Sink "<<sink<<endl;
varset_t sinkleton = 1U<<sink;
// cout<<"sinkleton"<<sinkleton<<endl;
varset_t upvars;
//HR: if sink is the subset of W
if (varset & sinkleton){
// cout<<"inside if loop";
upvars = varset& ~sinkleton;
// cout<<"Upvars:"<<upvars<<endl;
//HR: construct array bnets from kbnetscore[upvars]
bnets.clear();
bnets.resize(kbnetscore[upvars].size());
copy(kbnetscore[upvars].begin(), kbnetscore[upvars].end(), bnets.begin());
// print_queue(&bnets,nof_vars);
// scanf("%d",&h);
//cout<<"Copied"<<endl;
//HR: construct array bparents from kbps[s][upvars]
bparents.clear();
while(1){
fread(&s.scores,sizeof(score_t),1,fp[sink]);
//cout<<"read score"<<endl;
if(s.scores==1000.0)
break;
fread(&s.vset,sizeof(varset_t),1,fp[sink]);
// cout<<"read varset"<<endl;
//int num =k;
//insert_vec(&bparents,s,num);
bparents.push_back(s);
// print_queue(&bparents);
//scanf("%d",&h);
}
//scanf("%d",&h);
//printf("\n\n\nB PARENTS ============\n\n");
//print_queue(&bparents);
//scanf("%d",&h);
//printf("\n\n\nB nets =================\n\n");
//print_queue(&bnets,nof_vars);
//scanf("%d",&h);
//printf("\n\n\nKBNETSCORE %u =================\n\n",varset);
//print_queue(&kbnetscore[varset],nof_vars);
//scanf("%d",&h);
////printf("K = %d",k);
//printf("Sink = %d",sink);
//cout<<"Goin to call gettopk"<<endl;
gettopk(&bnets,&bparents,&kbnetscore[varset],k,sink,nof_vars); //new function: for each combination from n: totally 2^n
//printf("\n\n\nAfter topkKBNETSCORE %u =================\n\n",varset);
//print_queue(&kbnetscore[varset],nof_vars);
}//end of if
}//end of for each sink
//scanf("%d",&h);
}//end of for each W
//HR: last clear
//cout << "knets.clear() at the end of V begins: " << endl;
int knetsSize = knets.size() ;
const net_set * nsPtrA[knetsSize];
int j = 0;
for(NetScoreHashSet::iterator it = knets.begin(); it != knets.end(); it++){
nsPtrA[j++] = *it;
}
knets.clear();
//really delete each object
for(j = 0; j < knetsSize; j++){
delete nsPtrA[j]; //delete (*nsPtrA[j]) is wrong
}
//cout << "knets.clear() at the end of V ends. " << endl;
//HR
//print_queue(kbnetscore,32,5); //32 = 2^5
//cout << "main part of get__kbest_nets() is done." << endl;
//HR: only consider V, the bianary repre is nof_combs-1
conv_net(&kbnetscore[nof_combs-1],k,nof_vars);
//cout << "conv_net(&kbnetscore[nof_combs-1],k,nof_vars) is done." << endl;
//HR: get files: 0net, 1net, ..., (k-1)net
write_net(kbnetscore,dirname,k,nof_vars);
//cout << "write_net(kbnetscore,dirname,k,nof_vars) is done." << endl;
net2arc(dirname,k,nof_vars);
//cout << "net2arc(dirname,k,nof_vars) is done." << endl;
//HR:
//cout << endl;
//cout << "kbnetscore[nof_combs-1].size() = " << kbnetscore[nof_combs-1].size() << endl;
//cout << "1st network score: " << kbnetscore[nof_combs-1].front().score << endl;
//cout << "last network score: " << kbnetscore[nof_combs-1].back().score << endl;
//cout << "The difference of the scores = " << ( kbnetscore[nof_combs-1].front().score - kbnetscore[nof_combs-1].back().score ) << endl;
//cout << endl;
//
//comp_post(&kbnetscore[nof_combs-1],k,dirname); //new function: compute the posterior prob.
comp_post_compl(&kbnetscore[nof_combs-1],k,dirname, nof_vars);
cout << "comp_post_compl(&kbnetscore[nof_combs-1],k,dirname) is done." << endl;
//comp_postExact_compl(&kbnetscore[nof_combs-1],k,dirname, nof_vars);
cout << "comp_postExact_compl(&kbnetscore[nof_combs-1],k,dirname, nof_vars) is not done. we will change it if requires" << endl;
//HR:
// print_scores(kbnetscore,dirname,k,nof_vars);
}//end of get_kbest_nets
/*================================================================*/
//HR:F
int main(int argc, char* argv[]){
FILE* fp[32];
string str;
char str1[10];
// printf("argc : %d \n\n",argc);
if(argc!=4){
fprintf(stderr, "Usage: get_kbest_nets nof_vars dirname k\n");
return 1;
}
int nof_vars = atoi(argv[1]);
int k = atoi(argv[3]);
// printf("No of vars: %d K: %d\n\n",nof_vars,k);
for(int j=0;j<nof_vars;j++){
str.assign(argv[2]);
str.append("/");
sprintf(str1,"%d",j);
str.append(str1);
str.append(".kbps");
// cout<<str<<endl;
//HR: In order to open a file as a binary file, a "b" character has to be included in the mode string
fp[j]=fopen(str.c_str(),"rb");
}
//HR:
//cout<<"Calling function getkbestnets\n";
//
get_kbest_nets(nof_vars, fp, k,argv[2]);
//cout<<"Success!"<<endl;
return 0;
}
|