blob: 19690825c6fe375b8825c6418c33a05dfc5ebc85 (
plain)
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
|
//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*-
// file random.hpp
#ifndef _RANDOM_HPP
#define _RANDOM_HPP
#include <iostream>
#include <string>
#include "blkcom.hpp"
#include "dekspy.hpp"
namespace randomize {
// Variables.
//Prototypes.
double seedy(std::string *);
double randnm(const double &);
double sandnm(const double &);
}
#endif // _RANDOM_HPP
// end of file random.hpp
|