heptagon/examples/random/random.h
Gwenaël Delaval d5ee87b7ed Added example Markov
Example Markov : simulation of a Markov chain.

Use of a Random module, external call to C rand() function.
2015-09-17 11:17:29 +02:00

15 lines
207 B
C

#ifndef RANDOM_H
#define RANDOM_H
/* Example of a combinatorial function */
typedef struct Random__random_out {
float z;
} Random__random_out;
void Random__random_step(Random__random_out *o);
#endif