aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_normalization.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-06-14 14:46:32 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-06-14 14:46:32 +0000
commit4a87a62bdeac6daf3c876949260d6d22ab193fb0 (patch)
tree87849e105f4ab6c4713033c437f9ef9ac64e703a /src/ats/gnunet-service-ats_normalization.h
parent1d0dc833d1121914d42475d3c8b9e2e326a625fd (diff)
downloadgnunet-4a87a62bdeac6daf3c876949260d6d22ab193fb0.tar.gz
gnunet-4a87a62bdeac6daf3c876949260d6d22ab193fb0.zip
adding generic normalization support for all solvers
Diffstat (limited to 'src/ats/gnunet-service-ats_normalization.h')
-rw-r--r--src/ats/gnunet-service-ats_normalization.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/ats/gnunet-service-ats_normalization.h b/src/ats/gnunet-service-ats_normalization.h
new file mode 100644
index 000000000..8ad35e535
--- /dev/null
+++ b/src/ats/gnunet-service-ats_normalization.h
@@ -0,0 +1,58 @@
1/*
2 This file is part of GNUnet.
3 (C) 2011 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file ats/gnunet-service-ats_normalization.h
23 * @brief ats service address: management of ATS properties and preferences normalization
24 * @author Matthias Wachs
25 * @author Christian Grothoff
26 */
27#include "platform.h"
28#include "gnunet_ats_service.h"
29
30#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
31#define PREF_AGING_FACTOR 0.95
32
33#define DEFAULT_REL_PREFERENCE 1.0
34#define DEFAULT_ABS_PREFERENCE 0.0
35
36/**
37 * Changes the preferences for a peer in the problem
38 *
39 * @param solver the solver handle
40 * @param client the client with this preference
41 * @param peer the peer to change the preference for
42 * @param kind the kind to change the preference
43 * @param score the normalized score
44 */
45float
46GAS_normalization_change_preference (void *src,
47 const struct GNUNET_PeerIdentity *peer,
48 enum GNUNET_ATS_PreferenceKind kind,
49 float score_abs);
50
51void
52GAS_normalization_start ();
53
54void
55GAS_normalization_stop ();
56
57
58/* end of gnunet-service-ats_normalization.h */