aboutsummaryrefslogtreecommitdiff
path: root/src/ats/plugin_ats_mlp.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-05-14 08:34:07 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-05-14 08:34:07 +0000
commit41cff0bca30e6c1e891bcdabc50a4ab4c20e805b (patch)
treed8d136cc5d1f85c9b31c51d2bcda0fd52ff1e1d4 /src/ats/plugin_ats_mlp.c
parent4cb749c370a4fd93a00734c5692a6e3664a5d67f (diff)
downloadgnunet-41cff0bca30e6c1e891bcdabc50a4ab4c20e805b.tar.gz
gnunet-41cff0bca30e6c1e891bcdabc50a4ab4c20e805b.zip
use cfg function in solvers
Diffstat (limited to 'src/ats/plugin_ats_mlp.c')
-rw-r--r--src/ats/plugin_ats_mlp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ats/plugin_ats_mlp.c b/src/ats/plugin_ats_mlp.c
index ef6c978ca..c1d665de4 100644
--- a/src/ats/plugin_ats_mlp.c
+++ b/src/ats/plugin_ats_mlp.c
@@ -2343,7 +2343,7 @@ libgnunet_plugin_ats_mlp_init (void *cls)
2343 { 2343 {
2344 mlp->pv.mip_gap = f_tmp; 2344 mlp->pv.mip_gap = f_tmp;
2345 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s of %.3f\n", 2345 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s of %.3f\n",
2346 "MIP gap", mlp->pv.mip_gap); 2346 "MIP gap", f_tmp);
2347 } 2347 }
2348 } 2348 }
2349 2349
@@ -2360,7 +2360,7 @@ libgnunet_plugin_ats_mlp_init (void *cls)
2360 { 2360 {
2361 mlp->pv.lp_mip_gap = f_tmp; 2361 mlp->pv.lp_mip_gap = f_tmp;
2362 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", 2362 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n",
2363 "LP/MIP", mlp->pv.lp_mip_gap); 2363 "LP/MIP", f_tmp);
2364 } 2364 }
2365 } 2365 }
2366 2366
@@ -2392,7 +2392,7 @@ libgnunet_plugin_ats_mlp_init (void *cls)
2392 { 2392 {
2393 mlp->pv.co_D = f_tmp; 2393 mlp->pv.co_D = f_tmp;
2394 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", 2394 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n",
2395 "MLP_COEFFICIENT_D", mlp->pv.lp_mip_gap); 2395 "MLP_COEFFICIENT_D", f_tmp);
2396 } 2396 }
2397 } 2397 }
2398 2398
@@ -2410,7 +2410,7 @@ libgnunet_plugin_ats_mlp_init (void *cls)
2410 { 2410 {
2411 mlp->pv.co_R = f_tmp; 2411 mlp->pv.co_R = f_tmp;
2412 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", 2412 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n",
2413 "MLP_COEFFICIENT_R", mlp->pv.lp_mip_gap); 2413 "MLP_COEFFICIENT_R", f_tmp);
2414 } 2414 }
2415 } 2415 }
2416 2416
@@ -2429,7 +2429,7 @@ libgnunet_plugin_ats_mlp_init (void *cls)
2429 { 2429 {
2430 mlp->pv.co_U = f_tmp; 2430 mlp->pv.co_U = f_tmp;
2431 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", 2431 LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n",
2432 "MLP_COEFFICIENT_U", mlp->pv.lp_mip_gap); 2432 "MLP_COEFFICIENT_U", f_tmp);
2433 } 2433 }
2434 } 2434 }
2435 2435