X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49ddd5dcc036c4e40f8721c96cf70dcf931ecbd2..d546cc6688c4ec0100b9fbd30382c235876bf33a:/docs/source/Tutorial_Algorithms.rst diff --git a/docs/source/Tutorial_Algorithms.rst b/docs/source/Tutorial_Algorithms.rst index 3ccdde3c97..1c28510845 100644 --- a/docs/source/Tutorial_Algorithms.rst +++ b/docs/source/Tutorial_Algorithms.rst @@ -4,8 +4,8 @@ Simulating Algorithms ===================== SimGrid was conceived as a tool to study distributed algorithms. Its -modern :ref:`S4U interface ` makes it easy to assess Cloud, -P2P, HPC, IoT, and similar settings. +:ref:`S4U interface ` makes it easy to assess Cloud, +P2P, HPC, IoT, and other similar settings (:ref:`more info `). A typical SimGrid simulation is composed of several |Actors|_, that execute user-provided functions. The actors have to explicitly use the @@ -18,7 +18,7 @@ completion of these activities. Each actor executes a user-provided function on a simulated |Host|_ with which it can interact. Communications are not directly sent to -actors, but posted onto a |Mailbox|_ that serves as a rendezvous point +actors, but posted onto a |Mailbox|_ that serves as a rendez-vous point between communicating actors. .. |Actors| replace:: **Actors** @@ -62,8 +62,8 @@ fully-functioning example of SimGrid simulation: the Master/Workers application. We will detail each part of the code and the necessary configuration to make it work. After this tour, several exercises are proposed to let you discover some of the SimGrid features, hands -on the keyboard. This practical session will be given in C++, which you -are supposed to know beforehand. +on the keyboard. This practical session will be given in C++ or Python, +which you are supposed to know beforehand. Discover the Master/Workers