All Distance Sketch  0.1
All distance sketch based algorithms
Variables
all_distance_sketch.proto File Reference

Format to save the GraphSketch. More...

Variables

 syntax = "proto2"
 
package all_distance_sketch proto
 
message SingleNodeSketchGpb
 
optional double node_random_id = 2
 
repeated NodeSummaryDetailsGpb node_in_sketch = 3
 
repeated ZValuesGpb z_value = 4
 
message AllDistanceSketchGpb
 
repeated SingleNodeSketchGpb nodes_sketches = 2
 
repeated NodeThresholdGpb node_thresholds = 3
 

Detailed Description

Format to save the GraphSketch.

Variable Documentation

message AllDistanceSketchGpb
Initial value:
{
message NodeThresholdGpb {
optional uint64 node_id = 1;
optional double threshold = 2;
optional double random_id=3;
}
message ConfigurationGpb {
optional uint64 k = 1;
optional bool should_calc_z_values = 2;
}
optional ConfigurationGpb configuration = 1
message SingleNodeSketchGpb
Initial value:
{
message NodeSummaryDetailsGpb {
optional uint64 node_id = 1;
optional double distance = 2;
}
message ZValuesGpb {
optional uint64 node_id = 1;
optional double distance = 2;
}
optional uint64 node_id = 1