-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVCP3DirectedLinkPredictor.cpp
183 lines (169 loc) · 6.93 KB
/
VCP3DirectedLinkPredictor.cpp
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
/*
------------------------------------------------
Copyright (C) 2011 by Ryan N. Lichtenwalter
Email: [email protected]
This file is part of LPmade.
LPmade is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. LPmade 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 General Public License for more details. You should have received a copy of the GNU General Public License along with LPmade. If not, see <http://www.gnu.org/licenses/>.
------------------------------------------------
*/
#include <cmath>
#include <iostream>
#include "VCP3DirectedLinkPredictor.h"
using std::cout;
using std::cerr;
VCP3DirectedLinkPredictor::VCP3DirectedLinkPredictor( const WeightedNetwork& network, const WeightedNetwork& completeNetwork ) : LinkPredictor(network,completeNetwork) {
}
VCP3DirectedLinkPredictor::DetailedNeighbors VCP3DirectedLinkPredictor::computeDetailedNeighbors( const neighbor_set_t& inNeighbors, const neighbor_set_t& outNeighbors, vertex_t avoidance ) const {
neighbor_set_t::const_iterator inIt = inNeighbors.begin();
neighbor_set_t::const_iterator outIt = outNeighbors.begin();
neighbor_set_t::const_iterator inEnd = inNeighbors.end();
neighbor_set_t::const_iterator outEnd = outNeighbors.end();
DetailedNeighbors result;
while( inIt != inEnd && outIt != outEnd ) {
if( inIt->first == avoidance ) {
++inIt;
continue;
}
if( outIt->first == avoidance ) {
++outIt;
continue;
}
if( inIt->first < outIt->first ) {
result.inOnly.push_back( inIt->first );
result.either.push_back( inIt->first );
++inIt;
} else if( inIt->first > outIt->first ) {
result.outOnly.push_back( outIt->first );
result.either.push_back( outIt->first );
++outIt;
} else {
result.both.push_back( inIt->first );
result.either.push_back( inIt->first );
++inIt;
++outIt;
}
}
while( inIt != inEnd ) {
if( inIt->first == avoidance ) {
++inIt;
continue;
}
result.inOnly.push_back( inIt->first );
result.either.push_back( inIt->first );
++inIt;
}
while( outIt != outEnd ) {
if( outIt->first == avoidance ) {
++outIt;
continue;
}
result.outOnly.push_back( outIt->first );
result.either.push_back( outIt->first );
++outIt;
}
return result;
}
void VCP3DirectedLinkPredictor::edgeProfile( vertex_t v1, vertex_t v2, unsigned long vCounts[] ) const {
unsigned char reciprocal = (graphlets/2) * (char)network.hasEdge( v2, v1 );
DetailedNeighbors v1DetailedNeighbors = this->computeDetailedNeighbors( network.inNeighbors( v1 ), network.outNeighbors( v1 ), v2 );
DetailedNeighbors v2DetailedNeighbors = this->computeDetailedNeighbors( network.inNeighbors( v2 ), network.outNeighbors( v2 ), v1 );
vCounts[reciprocal] += this->network.vertexCount() - this->unionCount( v1DetailedNeighbors.either, v2DetailedNeighbors.either ) - 2;
vCounts[1+reciprocal] += this->differenceCount( v1DetailedNeighbors.outOnly, v2DetailedNeighbors.either );
vCounts[2+reciprocal] += this->differenceCount( v1DetailedNeighbors.inOnly, v2DetailedNeighbors.either );
vCounts[3+reciprocal] += this->differenceCount( v1DetailedNeighbors.both, v2DetailedNeighbors.either );
vCounts[4+reciprocal] += this->differenceCount( v2DetailedNeighbors.outOnly, v1DetailedNeighbors.either );
vCounts[5+reciprocal] += this->intersectionCount( v1DetailedNeighbors.outOnly, v2DetailedNeighbors.outOnly );
vCounts[6+reciprocal] += this->intersectionCount( v1DetailedNeighbors.inOnly, v2DetailedNeighbors.outOnly );
vCounts[7+reciprocal] += this->intersectionCount( v1DetailedNeighbors.both, v2DetailedNeighbors.outOnly );
vCounts[8+reciprocal] += this->differenceCount( v2DetailedNeighbors.inOnly, v1DetailedNeighbors.either );
vCounts[9+reciprocal] += this->intersectionCount( v1DetailedNeighbors.outOnly, v2DetailedNeighbors.inOnly );
vCounts[10+reciprocal] += this->intersectionCount( v1DetailedNeighbors.inOnly, v2DetailedNeighbors.inOnly );
vCounts[11+reciprocal] += this->intersectionCount( v1DetailedNeighbors.both, v2DetailedNeighbors.inOnly );
vCounts[12+reciprocal] += this->differenceCount( v2DetailedNeighbors.both, v1DetailedNeighbors.either );
vCounts[13+reciprocal] += this->intersectionCount( v1DetailedNeighbors.outOnly, v2DetailedNeighbors.both );
vCounts[14+reciprocal] += this->intersectionCount( v1DetailedNeighbors.inOnly, v2DetailedNeighbors.both );
vCounts[15+reciprocal] += this->intersectionCount( v1DetailedNeighbors.both, v2DetailedNeighbors.both );
}
unsigned long VCP3DirectedLinkPredictor::intersectionCount( const vector<vertex_t>& v1, const vector<vertex_t>& v2 ) const {
vector<vertex_t>::const_iterator first1 = v1.begin();
vector<vertex_t>::const_iterator last1 = v1.end();
vector<vertex_t>::const_iterator first2 = v2.begin();
vector<vertex_t>::const_iterator last2 = v2.end();
unsigned long count = 0;
while( first1 != last1 && first2 != last2 ) {
if( *first1 < *first2 ) {
++first1;
} else if( *first2 < *first1 ) {
++first2;
} else {
++count;
++first1;
++first2;
}
}
return count;
}
unsigned long VCP3DirectedLinkPredictor::differenceCount( const vector<vertex_t>& v1, const vector<vertex_t>& v2 ) const {
vector<vertex_t>::const_iterator first1 = v1.begin();
vector<vertex_t>::const_iterator last1 = v1.end();
vector<vertex_t>::const_iterator first2 = v2.begin();
vector<vertex_t>::const_iterator last2 = v2.end();
unsigned long count = 0;
while( first1 != last1 && first2 != last2 ) {
if( *first1 < *first2 ) {
++count;
++first1;
} else if( *first2 < *first1 ) {
++first2;
} else {
++first1;
++first2;
}
}
while( first1 != last1 ) {
++count;
++first1;
}
return count;
}
unsigned long VCP3DirectedLinkPredictor::unionCount( const vector<vertex_t>& v1, const vector<vertex_t>& v2 ) const {
vector<vertex_t>::const_iterator first1 = v1.begin();
vector<vertex_t>::const_iterator last1 = v1.end();
vector<vertex_t>::const_iterator first2 = v2.begin();
vector<vertex_t>::const_iterator last2 = v2.end();
unsigned long count = 0;
while( first1 != last1 && first2 != last2 ) {
if( *first1 < *first2 ) {
++count;
++first1;
} else if( *first2 < *first1 ) {
++count;
++first2;
} else {
++count;
++first1;
++first2;
}
}
while( first1 != last1 ) {
++count;
++first1;
}
while( first2 != last2 ) {
++count;
++first2;
}
return count;
}
VCP3DirectedLinkPredictor::~VCP3DirectedLinkPredictor() {
}
double VCP3DirectedLinkPredictor::generateScore( vertex_t vertex, vertex_t neighbor ) {
unsigned long vCounts[graphlets] = {0};
this->edgeProfile( vertex, neighbor, vCounts );
cerr << network.translateIntToExt( vertex ) << " " << network.translateIntToExt( neighbor );
for( size_t i = 0; i < graphlets; ++i ) {
cerr << " " << vCounts[i];
}
cerr << "\n";
return -1;
}