source:
sasview/src/sas/sascalc/simulation/geoshapespy/libgeoshapespy/myutil.cc
@
7949dcf7
Last change on this file since 7949dcf7 was d85c194, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 9 years ago | |
---|---|
|
|
File size: 218 bytes |
Line | |
---|---|
1 | /** \file myutil.cc */ |
2 | #include <cstdlib> |
3 | #include <ctime> |
4 | #include "myutil.h" |
5 | |
6 | using namespace std; |
7 | |
8 | void seed_rnd() { |
9 | srand((unsigned)time(NULL)); |
10 | } |
11 | |
12 | double ran1() |
13 | { |
14 | return (double)rand() / (double) RAND_MAX; |
15 | } |
16 |
Note: See TracBrowser
for help on using the repository browser.