ICEACE Model: Closed Economy
1.0.0
Design Documentation of ICEACE Model
|
Holds user created library functions. More...
Go to the source code of this file.
Functions | |
int | random_int (int min, int max) |
Returns an integer between and including min and max. More... | |
double | max (double a, double b) |
double | min (double a, double b) |
int | max_int (int a, int b) |
int | min_int (int a, int b) |
int | random_number (int a, int b) |
Holds user created library functions.
Definition in file library_functions.c.
double max | ( | double | a, |
double | b | ||
) |
Definition at line 20 of file library_functions.c.
int max_int | ( | int | a, |
int | b | ||
) |
Definition at line 30 of file library_functions.c.
double min | ( | double | a, |
double | b | ||
) |
Definition at line 25 of file library_functions.c.
int min_int | ( | int | a, |
int | b | ||
) |
int random_int | ( | int | min, |
int | max | ||
) |
Returns an integer between and including min and max.
min | The minimum integer. |
max | The maximum integer. |
Definition at line 15 of file library_functions.c.
int random_number | ( | int | a, |
int | b | ||
) |
Definition at line 44 of file library_functions.c.