Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Concepts
Random.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <ext/random>
9
10namespace debug {
11
12template < class T >
13class Random {
14public:
15 static T random ( );
16};
17
18template < class T >
21}
22
23} /* namespace debug */
24
Definition: Random.h:13
static T random()
Definition: Random.h:19
static semirandom_device & semirandom
The reference to singleton semirandom device.
Definition: random.hpp:147
Definition: Random.h:10