From 6192be76bb41809750efb4f1abfcab7da0041a73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Pereira?= <95joaopereira@gmail.com> Date: Sat, 17 Nov 2018 15:01:34 +0000 Subject: [PATCH] Update introduction.rst Add a link for MPI (Message Passing Interface). I had to google it while reading. --- docs/user/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/introduction.rst b/docs/user/introduction.rst index c5978512e..8dd89efd6 100644 --- a/docs/user/introduction.rst +++ b/docs/user/introduction.rst @@ -66,7 +66,7 @@ The algorithm implementations in the Spinning Up repo are designed to be - as simple as possible while still being reasonably good, - and highly-consistent with each other to expose fundamental similarities between algorithms. -They are almost completely self-contained, with virtually no common code shared between them (except for logging, saving, loading, and MPI utilities), so that an interested person can study each algorithm separately without having to dig through an endless chain of dependencies to see how something is done. The implementations are patterned so that they come as close to pseudocode as possible, to minimize the gap between theory and code. +They are almost completely self-contained, with virtually no common code shared between them (except for logging, saving, loading, and `MPI `_ utilities), so that an interested person can study each algorithm separately without having to dig through an endless chain of dependencies to see how something is done. The implementations are patterned so that they come as close to pseudocode as possible, to minimize the gap between theory and code. Importantly, they're all structured similarly, so if you clearly understand one, jumping into the next is painless.