aboutsummaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_addresses_simplistic.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-12-03 14:50:15 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-12-03 14:50:15 +0000
commita3b64a461bf4e1638ffb0884ed42bde42c56c77e (patch)
tree66844dd0f90f3e68a9d215ff57d025ed4ec992a8 /src/ats/gnunet-service-ats_addresses_simplistic.c
parent7098267e7ae29b19bc797c5c5c5f5a7e1b146a78 (diff)
downloadgnunet-a3b64a461bf4e1638ffb0884ed42bde42c56c77e.tar.gz
gnunet-a3b64a461bf4e1638ffb0884ed42bde42c56c77e.zip
changes
Diffstat (limited to 'src/ats/gnunet-service-ats_addresses_simplistic.c')
-rw-r--r--src/ats/gnunet-service-ats_addresses_simplistic.c64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/ats/gnunet-service-ats_addresses_simplistic.c b/src/ats/gnunet-service-ats_addresses_simplistic.c
new file mode 100644
index 000000000..ac9828f11
--- /dev/null
+++ b/src/ats/gnunet-service-ats_addresses_simplistic.c
@@ -0,0 +1,64 @@
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_addresses_simplistic.c
23 * @brief ats mlp problem solver
24 * @author Matthias Wachs
25 * @author Christian Grothoff
26 */
27#include "platform.h"
28#include "gnunet_util_lib.h"
29#include "gnunet-service-ats_addresses.h"
30#include "gnunet_statistics_service.h"
31#include "glpk.h"
32
33struct GAS_SIMPLISTIC_Handle
34{
35
36};
37
38/**
39 * Init the simplistic problem solving component
40 *
41 * @param cfg configuration handle
42 * @param stats the GNUNET_STATISTICS handle
43 * @param max_duration maximum numbers of iterations for the LP/MLP Solver
44 * @param max_iterations maximum time limit for the LP/MLP Solver
45 * @return struct GAS_MLP_Handle * on success, NULL on fail
46 */
47struct GAS_SIMPLISTIC_Handle *
48GAS_simplistic_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
49 const struct GNUNET_STATISTICS_Handle *stats)
50{
51 struct GAS_SIMPLISTIC_Handle *solver = GNUNET_malloc (sizeof (struct GAS_SIMPLISTIC_Handle));
52 return solver;
53}
54
55/**
56 * Shutdown the simplistic problem solving component
57 */
58void
59GAS_simplistic_done (struct GAS_SIMPLISTIC_Handle *solver)
60{
61 GNUNET_free (solver);
62}
63
64/* end of gnunet-service-ats_addresses_simplistic.c */