#include "CLASS.hxx"
#include "Storage.hxx"
#include "Reactor.hxx"
#include "Pool.hxx"
#include "FabricationPlant.hxx"
#include "LogFile.hxx"
#include <ctime>
#include "time.h"
#include <cmath>
#include <iomanip>
#include <fstream>
#include <sstream>
#include <algorithm>
#include <omp.h>
Aller au code source de ce fichier.
|
float | random (float a, float b) |
|
string | dtoa (double num) |
|
string dtoa |
( |
double |
num | ) |
|
Définition à la ligne 37 du fichier CLASS.cxx.
39 ostringstream os(ostringstream::out);
40 os<<setprecision(3)<<num;
float random |
( |
float |
a, |
|
|
float |
b |
|
) |
| |
Définition à la ligne 30 du fichier CLASS.cxx.
32 float range = pow(2., 31);
34 return (
float)a + (float)(
b-a)*rand()/range;