aboutsummaryrefslogtreecommitdiff
path: root/src/ats/perf_ats_solver.conf
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-05-12 16:47:50 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-05-12 16:47:50 +0000
commitac2be7dde06b71347d87ed491eb38d64a9163ad8 (patch)
treeeb96137d65b0305ad3ab008292466f068c3632d5 /src/ats/perf_ats_solver.conf
parent6f1bbf8034e41837c33c5e3a7270c603a02e9d2e (diff)
downloadgnunet-ac2be7dde06b71347d87ed491eb38d64a9163ad8.tar.gz
gnunet-ac2be7dde06b71347d87ed491eb38d64a9163ad8.zip
fixes for the solver and perf tool
Diffstat (limited to 'src/ats/perf_ats_solver.conf')
-rw-r--r--src/ats/perf_ats_solver.conf55
1 files changed, 43 insertions, 12 deletions
diff --git a/src/ats/perf_ats_solver.conf b/src/ats/perf_ats_solver.conf
index 83d5e0164..2cdb6cfae 100644
--- a/src/ats/perf_ats_solver.conf
+++ b/src/ats/perf_ats_solver.conf
@@ -1,19 +1,50 @@
1[ats] 1[ats]
2# Network specific inbound/outbound quotas 2# Network specific inbound/outbound quotas
3UNSPECIFIED_QUOTA_IN = unlimited 3UNSPECIFIED_QUOTA_IN = 1000
4UNSPECIFIED_QUOTA_OUT = unlimited 4UNSPECIFIED_QUOTA_OUT = 1000
5# LOOPBACK 5# LOOPBACK
6LOOPBACK_QUOTA_IN = unlimited 6LOOPBACK_QUOTA_IN = 1000
7LOOPBACK_QUOTA_OUT = unlimited 7LOOPBACK_QUOTA_OUT = 1000
8# LAN 8# LAN
9LAN_QUOTA_IN = unlimited 9LAN_QUOTA_IN = 1000
10LAN_QUOTA_OUT = unlimited 10LAN_QUOTA_OUT = 1000
11# WAN 11# WAN
12WAN_QUOTA_IN = unlimited 12WAN_QUOTA_IN = 1000
13WAN_QUOTA_OUT = unlimited 13WAN_QUOTA_OUT = 1000
14# WLAN 14# WLAN
15WLAN_QUOTA_IN = unlimited 15WLAN_QUOTA_IN = 1000
16WLAN_QUOTA_OUT = unlimited 16WLAN_QUOTA_OUT = 1000
17# BLUETOOTH 17# BLUETOOTH
18BLUETOOTH_QUOTA_IN = unlimited 18BLUETOOTH_QUOTA_IN = 1000
19BLUETOOTH_QUOTA_OUT = unlimited 19BLUETOOTH_QUOTA_OUT = 1000
20
21# Proportional specific settings
22# How proportional to preferences is bandwidth distribution in a network
23# 1: Fair with respect to addresses without preferences
24# > 100: The bigger, the more respect is payed to preferences
25PROP_PROPORTIONALITY_FACTOR = 200
26# Should we stick to existing connections are prefer to switch?
27# [100...200], lower value prefers to switch, bigger value is more tolerant
28PROP_STABILITY_FACTOR = 125
29
30# MLP specific settings
31# MLP defaults
32
33# Maximum duration for a solution process
34# MLP_MAX_DURATION = 3 s
35
36# Maximum number of iterations for a solution process
37# MLP_MAX_ITERATIONS = 1024
38# MLP_COEFFICIENT_D = 1.0
39# MLP_COEFFICIENT_U = 1.0
40# MLP_COEFFICIENT_R = 1.0
41MLP_MIN_BANDWIDTH = 1
42# MLP_MIN_CONNECTIONS = 4
43
44# MLP Log settings
45# Dump all problems to disk
46MLP_DUMP_PROBLEM_ALL = NO
47# Dump all solution to disk
48MLP_DUMP_SOLUTION_ALL = NO
49# Print GLPK output
50MLP_GLPK_VERBOSE = NO