-
Notifications
You must be signed in to change notification settings - Fork 0
/
growth.h
49 lines (38 loc) · 1.14 KB
/
growth.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef GROWTH_H
#define GROWTH_H
#ifdef GROWTH_MODULE
/* stuff visable only to the growth module */
char growth_h_sccs_id[] = "@(#)growth.h 1.245 12/4/00";
#endif
/* #defines visable to any module including this header file*/
/*
*
* FUNCTION PROTOTYPES
*
*/
void grw_grow(GRID_P z_ptr, GRID_P land1_ptr, GRID_P road_state_ptr);
void Growth (int stop_date,
Classes* landuse_classes,
Classes* class_indices,
int* new_indices,
int urban_code,
int num_road_pixels,
int num_excld_pixels,
float percent_road,
coeff_val_info* current_coefficient,
igrid_info* input_grid,
GRID_P z_ptr,
GRID_P land1_ptr,
GRID_P land2_ptr,
GRID_P scratch_gif1,
GRID_P scratch_gif2,
GRID_P scratch_gif3,
GRID_P scratch_gif4,
GRID_P scratch_gif5,
GRID_P scratch_gif6,
GRID_P scratch_gif7,
GRID_P scratch_gif8,
double *class_slope,
double *ftransition,
int num_monte_carlo);
#endif