mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-12-22 18:21:51 +01:00
Compare commits
2 Commits
6654f8e9f7
...
6cbdbc9632
Author | SHA1 | Date | |
---|---|---|---|
|
6cbdbc9632 | ||
|
6ee0d2b7ac |
@ -75,21 +75,23 @@ class WorkerGetIntersectionHandler @Inject() (
|
||||
val rightNeighborsOpt =
|
||||
rightEdgeMap.get(featureType.rightEdgeType).flatMap(_.get(candidateId))
|
||||
|
||||
if (leftNeighborsOpt.isEmpty && rightNeighborsOpt.isEmpty) {
|
||||
EmptyWorkerIntersectionValue
|
||||
} else if (rightNeighborsOpt.isEmpty) {
|
||||
(leftNeighborsOpt, rightNeighborsOpt) match {
|
||||
case (Some(leftNeighbors), None) =>
|
||||
EmptyWorkerIntersectionValue.copy(
|
||||
leftNodeDegree = computeArraySize(leftNeighborsOpt.get)
|
||||
leftNodeDegree = computeArraySize(leftNeighbors)
|
||||
)
|
||||
} else if (leftNeighborsOpt.isEmpty) {
|
||||
case (None, Some(rightNeighbors)) =>
|
||||
EmptyWorkerIntersectionValue.copy(
|
||||
rightNodeDegree = computeArraySize(rightNeighborsOpt.get)
|
||||
rightNodeDegree = computeArraySize(rightNeighbors)
|
||||
)
|
||||
} else {
|
||||
case (Some(leftNeighbors), Some(rightNeighbors)) =>
|
||||
IntersectionValueCalculator(
|
||||
leftNeighborsOpt.get,
|
||||
rightNeighborsOpt.get,
|
||||
request.intersectionIdLimit)
|
||||
leftNeighbors,
|
||||
rightNeighbors,
|
||||
request.intersectionIdLimit
|
||||
)
|
||||
case _ =>
|
||||
EmptyWorkerIntersectionValue
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user