for (Agent src : fbVertices) {
for (Agent sink : fbVertices) {
if (!src.equals(sink)) {
double trustScore = -1;
try {
trustScore = alg.calculateTrustScore(src, sink);
} catch (Exception ex) {
continue;
}
ensureAgentExists(src.id, this);
ensureAgentExists(sink.id, this);