From 9bd4d55089fbbd3a06ca5fe9741d19a639bff4da Mon Sep 17 00:00:00 2001 From: alegrand Date: Wed, 1 Aug 2007 00:44:11 +0000 Subject: [PATCH] adding network models git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3924 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/include/surf/surf.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/include/surf/surf.h b/src/include/surf/surf.h index 840cd70383..f068b0b699 100644 --- a/src/include/surf/surf.h +++ b/src/include/surf/surf.h @@ -285,6 +285,34 @@ XBT_PUBLIC(void) surf_network_resource_init_CM02(const char *filename); XBT_PUBLIC(void) surf_network_resource_init_GTNETS(const char *filename); #endif +/** \brief Initializes the platform with the network model Reno + * \ingroup SURF_resources + * \param filename XML platform file name + * + * Call this function only if you plan using surf_workstation_resource_init_compound. + * + */ +XBT_PUBLIC(void) surf_network_resource_init_Reno(const char *filename); + +/** \brief Initializes the platform with the network model Vegas + * \ingroup SURF_resources + * \param filename XML platform file name + * + * Call this function only if you plan using surf_workstation_resource_init_compound. + * + */ +XBT_PUBLIC(void) surf_network_resource_init_Vegas(const char *filename); + +#ifdef HAVE_SDP +/** \brief Initializes the platform with the network model based on SDP + * \ingroup SURF_resources + * \param filename XML platform file name + * + * Call this function only if you plan using surf_workstation_resource_init_compound. + */ +XBT_PUBLIC(void) surf_network_resource_init_SDP(const char *filename); +#endif + /** \brief Workstation resource extension public * \ingroup SURF_resources * -- 2.20.1