diff options
author | Matthias Wachs <wachs@net.in.tum.de> | 2014-05-14 08:34:07 +0000 |
---|---|---|
committer | Matthias Wachs <wachs@net.in.tum.de> | 2014-05-14 08:34:07 +0000 |
commit | 41cff0bca30e6c1e891bcdabc50a4ab4c20e805b (patch) | |
tree | d8d136cc5d1f85c9b31c51d2bcda0fd52ff1e1d4 /src/ats/plugin_ats_mlp.c | |
parent | 4cb749c370a4fd93a00734c5692a6e3664a5d67f (diff) |
use cfg function in solvers
Diffstat (limited to 'src/ats/plugin_ats_mlp.c')
-rw-r--r-- | src/ats/plugin_ats_mlp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ats/plugin_ats_mlp.c b/src/ats/plugin_ats_mlp.c index ef6c978ca5..c1d665de4e 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) { mlp->pv.mip_gap = f_tmp; LOG (GNUNET_ERROR_TYPE_INFO, "Using %s of %.3f\n", - "MIP gap", mlp->pv.mip_gap); + "MIP gap", f_tmp); } } @@ -2360,7 +2360,7 @@ libgnunet_plugin_ats_mlp_init (void *cls) { mlp->pv.lp_mip_gap = f_tmp; LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", - "LP/MIP", mlp->pv.lp_mip_gap); + "LP/MIP", f_tmp); } } @@ -2392,7 +2392,7 @@ libgnunet_plugin_ats_mlp_init (void *cls) { mlp->pv.co_D = f_tmp; LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", - "MLP_COEFFICIENT_D", mlp->pv.lp_mip_gap); + "MLP_COEFFICIENT_D", f_tmp); } } @@ -2410,7 +2410,7 @@ libgnunet_plugin_ats_mlp_init (void *cls) { mlp->pv.co_R = f_tmp; LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", - "MLP_COEFFICIENT_R", mlp->pv.lp_mip_gap); + "MLP_COEFFICIENT_R", f_tmp); } } @@ -2429,7 +2429,7 @@ libgnunet_plugin_ats_mlp_init (void *cls) { mlp->pv.co_U = f_tmp; LOG (GNUNET_ERROR_TYPE_INFO, "Using %s gap of %.3f\n", - "MLP_COEFFICIENT_U", mlp->pv.lp_mip_gap); + "MLP_COEFFICIENT_U", f_tmp); } } |