(frag, context)
| 570 | class SSSP_PIE(AppAssets): |
| 571 | @staticmethod |
| 572 | def Init(frag, context): |
| 573 | v_label_num = frag.vertex_label_num() |
| 574 | for v_label_id in range(v_label_num): |
| 575 | nodes = frag.nodes(v_label_id) |
| 576 | context.init_value( |
| 577 | nodes, v_label_id, 1000000000.0, PIEAggregateType.kMinAggregate |
| 578 | ) |
| 579 | context.register_sync_buffer(v_label_id, MessageStrategy.kSyncOnOuterVertex) |
| 580 | |
| 581 | @staticmethod |
| 582 | def PEval(frag, context): |
nothing calls this directly
no test coverage detected