aboutsummaryrefslogtreecommitdiffstats
path: root/test.cpp
diff options
context:
space:
mode:
authorBertrand <bertrand.horel@gmail.com>2016-02-19 15:03:51 +0000
committerBertrand <bertrand.horel@gmail.com>2016-02-19 15:03:51 +0000
commitd2b133901a65244934eb642ec8e20c797efaf650 (patch)
treef8d186f8e8ca0886f8f0a464261ba8747242b4e6 /test.cpp
parent355e4567e68a76356714e2e58a42dcd78533cf6c (diff)
downloadprojet_C++-d2b133901a65244934eb642ec8e20c797efaf650.tar.gz
nettoyage du dépôt
Diffstat (limited to 'test.cpp')
-rw-r--r--test.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/test.cpp b/test.cpp
deleted file mode 100644
index 3578c87..0000000
--- a/test.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <iostream>
-#include "var_alea.hpp"
-
-int main() {
- init_alea();
-
- uniform U(0,1);
- std::cout << U() << std::endl;
-
- expo E(1);
- std::cout << E() << std::endl;
-
- gaussian G(0,1);
- std::cout << G() << std::endl;
-
- chi_deux X(1);
- std::cout << X() << std::endl;
-
- inverse_gaussian Y(0.5,1);
- std::cout << Y() << std::endl;
-
- normal_inverse_gaussian Z(0.8,0.1,0,2);
- std::cout << Z() << std::endl;
-
- return 0;
-};