A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
loba.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add grids of 16, 64, and 256 nodes, based on g5k.xml
[loba.git]
/
neighbor.cpp
diff --git
a/neighbor.cpp
b/neighbor.cpp
index 752378312ef2a4ee0fad36cefdb89e221aba8bfd..be8066472641c134d24d21a25e9fecc3f774c98f 100644
(file)
--- a/
neighbor.cpp
+++ b/
neighbor.cpp
@@
-8,7
+8,8
@@
XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc); // needed to compile neighbor.h
#include "neighbor.h"
neighbor::neighbor(const char* hostname)
#include "neighbor.h"
neighbor::neighbor(const char* hostname)
- : host(static_cast<hostdata*>(MSG_host_get_data(MSG_get_host_by_name(hostname))))
+ : host(static_cast<hostdata*>
+ (MSG_host_get_data(MSG_get_host_by_name(hostname))))
, load(std::numeric_limits<double>::infinity())
, debt(0.0)
, to_send(0.0)
, load(std::numeric_limits<double>::infinity())
, debt(0.0)
, to_send(0.0)
@@
-23,8
+24,8
@@
void neighbor::print(bool verbose,
e_xbt_log_priority_t logp, xbt_log_category_t cat) const
{
if (verbose)
e_xbt_log_priority_t logp, xbt_log_category_t cat) const
{
if (verbose)
- X
CLOG4
(cat, logp, "%s: load = %g ; debt = %g ; to_send = %g",
- get_name(), get_load(), get_debt(), get_to_send());
+ X
BT_XCLOG
(cat, logp, "%s: load = %g ; debt = %g ; to_send = %g",
+
get_name(), get_load(), get_debt(), get_to_send());
else
else
- X
CLOG2
(cat, logp, "%s: load = %g", get_name(), get_load());
+ X
BT_XCLOG
(cat, logp, "%s: load = %g", get_name(), get_load());
}
}