-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproc_obj.h
More file actions
28 lines (25 loc) · 815 Bytes
/
proc_obj.h
File metadata and controls
28 lines (25 loc) · 815 Bytes
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
void proc_MemoryLog(FILE* fp);
void proc_SetProcessingType(int i);
void proc_SetTotalRuns();
void proc_SetCurrentRun(int i);
void proc_SetCurrentMonteCarlo(int i);
void proc_SetCurrentYear(int i);
void proc_SetStopYear(int i);
int proc_GetProcessingType();
int proc_GetTotalRuns();
int proc_GetCurrentRun();
int proc_GetCurrentMonteCarlo();
int proc_GetCurrentYear();
int proc_GetStopYear();
int proc_GetLastRun();
BOOLEAN proc_GetLastRunFlag();
BOOLEAN proc_GetLastMonteCarloFlag ();
void proc_SetLastMonteCarlo(int val);
int proc_IncrementCurrentRun();
int proc_SetLastMonteCarloFlag();
int proc_IncrementCurrentYear();
void proc_SetNumRunsExecThisCPU (int val);
int proc_GetNumRunsExecThisCPU ();
void proc_IncrementNumRunsExecThisCPU ();
BOOLEAN proc_GetRestartFlag ();
void proc_SetRestartFlag (BOOLEAN i);