aboutsummaryrefslogtreecommitdiffstats
path: root/src/test.cpp
diff options
context:
space:
mode:
authorBertrand <bertrand.horel@gmail.com>2016-04-11 14:17:21 +0000
committerBertrand <bertrand.horel@gmail.com>2016-04-11 14:17:21 +0000
commit95ee7fca4b4a30cc8e381b09c963b94512630521 (patch)
tree6afd60ee9107e8b239f34ad6cc1f5ffac83b9890 /src/test.cpp
parenta6076b6b0cc7958e8b939ba6ed3ddb53d7d1ff20 (diff)
downloadprojet_C++-95ee7fca4b4a30cc8e381b09c963b94512630521.tar.gz
début nettoyage et description dans README
Diffstat (limited to 'src/test.cpp')
-rw-r--r--src/test.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test.cpp b/src/test.cpp
deleted file mode 100644
index 3578c87..0000000
--- a/src/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;
-};