3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 11:43:47 +01:00
dft_tools/doc/reference/random_generator/contents.rst
tayral edd1ff4529 Restructuring documentation.
A first general restructuration of the doc according to the pattern [tour|tutorial|reference].
In the reference part, objects are documented per topic.
In each topic, [definition|c++|python|hdf5] (not yet implemented)
2014-10-18 12:21:08 +01:00

50 lines
1.1 KiB
ReStructuredText

.. index:: Random number generator
.. module:: pytriqs.random_generator
.. _random_generator:
Random number generators
==========================
TRIQS exposes to python the random number generators used in C++,
in the module ``RandomGenerator``.
The generators are the boost random generators.
Usage
-----
The generator is constructed from a name (the name of the boost generator) and a seed::
from pytriqs.random_generator import *
r = RandomGenerator("mt19937", 237849)
A list of available random generators is obtained with::
print random_generator_names_list()
Then you can either generate float number on the interval :math:`[0,1[`
simply by calling the generator, or integer numbers in the inverval :math:`[0,N-1]` by calling
it with `N` ::
print r()
print r(10)
Example
-------
Here's a simple example showing how to use the generator.
.. plot:: reference/random_generator/random.py
:include-source:
:scale: 70
Complete reference
------------------
.. autoclass:: pytriqs.random_generator.RandomGenerator
:members:
.. autofunction:: pytriqs.random_generator.random_generator_names_list