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
|
################################################################
# PARAM SET 1
# very conservative bundling
# maximum distance between links in a bundle
max_gap = 1e6
################################################################
# PARAM SET 2
# very conservative bundling
# very aggresive size filter
# maximum distance between links in a bundle
#max_gap = 1e6
# minimum total size of links in a bundle
#min_bundle_size = 500000
################################################################
# PARAM SET 3
# loose bundling
# bundle identity filter (link size / bundle extent)
# maximum distance between links in a bundle
#max_gap = 10e6
# minimum bundle identity
#min_bundle_identity = 0.25
################################################################
# PARAM SET 4
# loose bundling
# bundle identity filter (link size / bundle extent)
# maximum distance between links in a bundle
#max_gap = 25e6
# minimum number of links in a bundle
#min_bundle_membership = 20
|