@@ -22,7 +22,7 @@ Now, we can install SimulaQron by simply typing::
2222
2323 pip3 install simulaqron
2424
25- You can then make use of SimulaQron using the command :code: ` simulaqron ` in the terminal. For more information on how
25+ You can then make use of SimulaQron using the command `` simulaqron ` ` in the terminal. For more information on how
2626to use this command see below or type::
2727
2828 simulaqron -h
@@ -45,7 +45,7 @@ Before delving into how to write any program yourself, let's first simply run on
4545Remember from the Overview that SimulaQron has two parts: the first are the virtual node servers that simulate
4646the hardware at each node as well as the quantum communication between them in a transparent manner.
4747The second are the applications themselves which can be written in two ways: the direct way is to use the native
48- mode using the Python Twisted framework connecting to the virtual node servers (see :doc: `Examples ` ),
48+ mode using the Python Twisted framework connecting to the virtual node servers (see `Examples < Examples.rst >`_ ),
4949and the recommended way is to use the NetQASM library that calls the virtual nodes via the NetQASM interface.
5050We will here illustrate how to use SimulaQron with the NetQASM library.
5151
@@ -59,14 +59,14 @@ the backend of SimulaQron simply type::
5959
6060 simulaqron start
6161
62- .. warning :: Running :code:` simulaqron start` will be default start up servers on localhost (i.e., your own computer),
62+ .. warning :: Running `` simulaqron start` ` will be default start up servers on localhost (i.e., your own computer),
6363 using port numbers between 8000 and 9000, to form the simulated quantum internet hardware. SimulaQron does not
6464 provide any access control to its simulated hardware, so you are responsible to securing access should this be
6565 relevant for you. You can also run the different simulated nodes on different computers. We do not take any
6666 responsibility for problems caused by SimulaQron.
6767
68- For more information on what :code: ` ./cli/SimulaQron start ` does, how to change the nodes and the ports of the network,
69- the topology etc, see :doc: ` ConfNodes ` .
68+ For more information on what `` ./cli/SimulaQron start ` ` does, how to change the nodes and the ports of the network,
69+ the topology etc, see ` Configuring the Network < ConfNodes.rst >`_ .
7070
7171To stop the backend, simply type::
7272
@@ -93,7 +93,7 @@ Evidently, there would be classical means to achieve this trivial task chosen fo
9393
9494* Both Alice and Bob measure their respective qubits to obtain a classical random number :math: `x \in \{ 0 ,1 \}`.
9595
96- The examples can be found in ``examples/new-sdk/ `` (see :doc: `Examples ` for the full list).
96+ The examples can be found in ``examples/new-sdk/ `` (see `Examples < Examples.rst >`_ for the full list).
9797Before seeing how this example works, let us simply run the code::
9898
9999 cd examples/new-sdk/corrRNG
@@ -170,7 +170,7 @@ Similarly the core of bobTest.py is::
170170 m1_val = int(m1)
171171 sim_conn.close()
172172
173- For further examples, see :doc: `Examples ` and :doc: ` NetQASM ` for the full SDK reference.
173+ For further examples, see `Examples < Examples.rst >`_ and ` The NetQASM Interface < NetQASM.rst >`_ for the full SDK reference.
174174
175175.. _settings :
176176
@@ -220,7 +220,7 @@ This command will create a file with the following configuration::
220220 "t1": 1.0
221221 }
222222
223- Section :ref: ` settings_fields ` provides a description about each one of the configuration options in the file.
223+ The section ` Settings Fields `_ below provides a description about each one of the configuration options in the file.
224224
225225Alternatively, you can place the ``simulaqron_settings.json `` file in the folder ``~/.simulaqron `` (i.e. a folder
226226named ``.simulaqron `` in your home folder). Doing so will make your settings persist across different projects you
@@ -268,7 +268,7 @@ The SimulaQron settings file contains a set of fields to control the configurati
268268* ``t1 ``: T1 parameter to use when applying noise on the emulated qubits. This value is only used when the
269269 ``noisy_qubit `` option is set to ``true ``.
270270
271- The default value of all these fields can be seen in the :ref: ` settings ` section.
271+ The default value of all these fields can be seen in the Settings _ section above .
272272
273273.. note :: An application can become "stalled" in certain configurations, leaving the application to look "hung". This
274274 leads to a deadlock of the application. SimulaQron will wait for the configured time before considering the
0 commit comments