-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRandomizer.h
50 lines (42 loc) · 1.49 KB
/
Randomizer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Copyright (c) 2024 Technische Universität Berlin [DEBUS]
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Lisa Y. Debus <debus@ccs-labs.org>
*/
#ifndef H_RANDOMIZER_
#define H_RANDOMIZER_
#include "ns3/core-module.h"
#include "ns3/object.h"
#include <cstdint>
#include <random>
using namespace std;
namespace ns3 {
class Randomizer {
private:
static uint32_t m_seed;
static uint32_t m_run;
static Ptr<UniformRandomVariable> stream_bool;
static Ptr<UniformRandomVariable> stream_0_1;
public:
static void InitRandomizer(bool isDeterministic);
// Will return either true or false randomly
static bool GetRandomBoolean();
// Will return a random value between 0 and 1.
static double GetRandomValue();
static Ptr<UniformRandomVariable> GetNewRandomStream(double min,
double max);
};
}; // namespace ns3
#endif