A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
loba.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f4c2223b933864fff0dbb7e0747d0dd8ee937f71
[loba.git]
/
version.cpp
1
#include "version.h"
2
3
namespace version {
4
5
const std::string name
6
("Asynchronous Load Balancing");
7
8
const std::string num
9
("0.3"
10
#include "localversion"
11
);
12
13
const std::string date
14
(__DATE__ " " __TIME__);
15
16
const std::string copyright
17
("Copyright (c) 2010-2018, Arnaud Giersch <arnaud.giersch@univ-fcomte.fr>");
18
19
}
20
21
// Local variables:
22
// mode: c++
23
// End: