aboutsummaryrefslogtreecommitdiff
path: root/src/ats
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-05-19 08:52:26 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-05-19 08:52:26 +0000
commit1430fc48988e28d5db9883c044dee7267ca9cdd4 (patch)
treecd95fc9d11ac844fc8832d67f7aba542e85ea6ec /src/ats
parent47ee00dc6c361eb6acc1c0b123b6bfba7eb01c05 (diff)
downloadgnunet-1430fc48988e28d5db9883c044dee7267ca9cdd4.tar.gz
gnunet-1430fc48988e28d5db9883c044dee7267ca9cdd4.zip
reduce log level when solution was found within optimality gap
Diffstat (limited to 'src/ats')
-rw-r--r--src/ats/plugin_ats_mlp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ats/plugin_ats_mlp.c b/src/ats/plugin_ats_mlp.c
index c1d665de4..d2e29cc77 100644
--- a/src/ats/plugin_ats_mlp.c
+++ b/src/ats/plugin_ats_mlp.c
@@ -1381,7 +1381,7 @@ GAS_mlp_solve_problem (void *solver)
1381 if ( (mlp->ps.mlp_gap <= mlp->pv.mip_gap) || 1381 if ( (mlp->ps.mlp_gap <= mlp->pv.mip_gap) ||
1382 (mlp->ps.lp_mlp_gap <= mlp->pv.lp_mip_gap) ) 1382 (mlp->ps.lp_mlp_gap <= mlp->pv.lp_mip_gap) )
1383 { 1383 {
1384 LOG (GNUNET_ERROR_TYPE_WARNING, 1384 LOG (GNUNET_ERROR_TYPE_INFO,
1385 "Solution of MLP problem is feasible and solution within gap constraints: %s, %s\n", 1385 "Solution of MLP problem is feasible and solution within gap constraints: %s, %s\n",
1386 mlp_solve_to_string (mip_res), 1386 mlp_solve_to_string (mip_res),
1387 mlp_status_to_string (mip_status)); 1387 mlp_status_to_string (mip_status));