A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
loba.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3340f8f49678998415d94a3fb9f5b83f43b6128d
[loba.git]
/
neighbor.cpp
1
#include "neighbor.h"
2
3
#include <limits>
4
#include <msg/msg.h>
5
6
neighbor::neighbor(const char* hostname)
7
: host((hostdata* )MSG_host_get_data(MSG_get_host_by_name(hostname)))
8
, load(std::numeric_limits<double>::infinity())
9
, debt(0.0)
10
, to_send(0.0)
11
{
12
}
13
14
neighbor::~neighbor()
15
{
16
}