perf_ats_solver.conf 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. [ats]
  2. # Network specific inbound/outbound quotas
  3. UNSPECIFIED_QUOTA_IN = 1000000
  4. UNSPECIFIED_QUOTA_OUT = 1000000
  5. # LOOPBACK
  6. LOOPBACK_QUOTA_IN = 10000000
  7. LOOPBACK_QUOTA_OUT = 10000000
  8. # LAN
  9. LAN_QUOTA_IN = 10000000
  10. LAN_QUOTA_OUT = 10000000
  11. # WAN
  12. WAN_QUOTA_IN = 10000000
  13. WAN_QUOTA_OUT = 10000000
  14. # WLAN
  15. WLAN_QUOTA_IN = 10000000
  16. WLAN_QUOTA_OUT = 10000000
  17. # BLUETOOTH
  18. BLUETOOTH_QUOTA_IN = 10000000
  19. BLUETOOTH_QUOTA_OUT = 10000000
  20. # Proportional specific settings
  21. # How proportional to preferences is bandwidth distribution in a network
  22. # 1: Fair with respect to addresses without preferences
  23. # > 10: The bigger, the more respect is payed to preferences
  24. PROP_PROPORTIONALITY_FACTOR = 2.00
  25. # Should we stick to existing connections are prefer to switch?
  26. # [10...200], lower value prefers to switch, bigger value is more tolerant
  27. PROP_STABILITY_FACTOR = 1.25
  28. # MLP specific settings
  29. # MLP defaults
  30. # Maximum duration for a solution process
  31. # MLP_MAX_DURATION = 30 s
  32. # Maximum number of iterations for a solution process
  33. # MLP_MAX_ITERATIONS = 1024
  34. # Tolerated MIP Gap [0.0 .. 1.0], default 0.025
  35. MLP_MAX_MIP_GAP = 0.025
  36. # Tolerated LP/MIP Gap [0.0 .. 1.0], default 0.025
  37. MLP_MAX_LP_MIP_GAP = 0.025
  38. # MLP_COEFFICIENT_D = 1.0
  39. # MLP_COEFFICIENT_U = 1.0
  40. # MLP_COEFFICIENT_R = 1.0
  41. MLP_MIN_BANDWIDTH = 10
  42. # MLP_MIN_CONNECTIONS = 4
  43. # MLP_DBG_FEASIBILITY_ONLY = YES
  44. MLP_DBG_AUTOSCALE_PROBLEM = YES
  45. # MLP_DBG_INTOPT_PRESOLVE = YES
  46. # Print GLPK output
  47. # MLP_DBG_GLPK_VERBOSE = YES
  48. #MLP_DBG_OPTIMIZE_UTILITY = NO
  49. #MLP_DBG_OPTIMIZE_QUALITY = NO
  50. #MLP_DBG_OPTIMIZE_RELATIVITY = NO
  51. #DLP_DBG_OPTIMIZE_DIVERSITY = NO
  52. MLP_LOG_FORMAT = CPLEX
  53. # MLP Log settings
  54. # Dump all problems to disk
  55. # MLP_DUMP_PROBLEM_ALL = YES
  56. # Dump all solution to disk
  57. # MLP_DUMP_SOLUTION_ALL = YES
  58. # RIL specifc settings
  59. RIL_STEP_TIME_MIN = 1 ms
  60. RIL_STEP_TIME_MAX = 10 ms
  61. RIL_ALGORITHM = Q
  62. RIL_DISCOUNT_BETA = 0.7
  63. RIL_GRADIENT_STEP_SIZE = 0.3
  64. RIL_TRACE_DECAY = 0.2
  65. RIL_EXPLORE_RATIO = 0.1
  66. RIL_GLOBAL_REWARD_SHARE = 1