From 4932af68493bdb0f8ea88703c838a9c3d653d467 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Fri, 16 May 2014 07:40:49 +0000 Subject: fixing division by zero in normalization --- src/ats/perf_ats_solver.conf | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) (limited to 'src/ats/perf_ats_solver.conf') diff --git a/src/ats/perf_ats_solver.conf b/src/ats/perf_ats_solver.conf index c8e13206c..c68075bf6 100644 --- a/src/ats/perf_ats_solver.conf +++ b/src/ats/perf_ats_solver.conf @@ -3,20 +3,20 @@ UNSPECIFIED_QUOTA_IN = 1000000 UNSPECIFIED_QUOTA_OUT = 1000000 # LOOPBACK -LOOPBACK_QUOTA_IN = 1000000 -LOOPBACK_QUOTA_OUT = 1000000 +LOOPBACK_QUOTA_IN = 10000000 +LOOPBACK_QUOTA_OUT = 10000000 # LAN -LAN_QUOTA_IN = 1000000 -LAN_QUOTA_OUT = 1000000 +LAN_QUOTA_IN = 10000000 +LAN_QUOTA_OUT = 10000000 # WAN -WAN_QUOTA_IN = 1000000 -WAN_QUOTA_OUT = 1000000 +WAN_QUOTA_IN = 10000000 +WAN_QUOTA_OUT = 10000000 # WLAN -WLAN_QUOTA_IN = 1000000 -WLAN_QUOTA_OUT = 1000000 +WLAN_QUOTA_IN = 10000000 +WLAN_QUOTA_OUT = 10000000 # BLUETOOTH -BLUETOOTH_QUOTA_IN = 1000000 -BLUETOOTH_QUOTA_OUT = 1000000 +BLUETOOTH_QUOTA_IN = 10000000 +BLUETOOTH_QUOTA_OUT = 10000000 # Proportional specific settings # How proportional to preferences is bandwidth distribution in a network @@ -31,7 +31,7 @@ PROP_STABILITY_FACTOR = 1.25 # MLP defaults # Maximum duration for a solution process -# MLP_MAX_DURATION = 3 s +# MLP_MAX_DURATION = 30 s # Maximum number of iterations for a solution process # MLP_MAX_ITERATIONS = 1024 @@ -49,7 +49,7 @@ MLP_MIN_BANDWIDTH = 10 MLP_DBG_AUTOSCALE_PROBLEM = YES # MLP_DBG_INTOPT_PRESOLVE = YES # Print GLPK output -#MLP_DBG_GLPK_VERBOSE = YES +MLP_DBG_GLPK_VERBOSE = YES #MLP_DBG_OPTIMIZE_UTILITY = NO #MLP_DBG_OPTIMIZE_QUALITY = NO @@ -64,3 +64,14 @@ MLP_LOG_FORMAT = CPLEX # Dump all solution to disk # MLP_DUMP_SOLUTION_ALL = YES +# RIL specifc settings +RIL_STEP_TIME_MIN = 1 ms +RIL_STEP_TIME_MAX = 10 ms + +RIL_ALGORITHM = Q +RIL_DISCOUNT_BETA = 0.7 +RIL_GRADIENT_STEP_SIZE = 0.3 +RIL_TRACE_DECAY = 0.2 +RIL_EXPLORE_RATIO = 0.1 +RIL_GLOBAL_REWARD_SHARE = 1 + -- cgit v1.2.3