-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTestDensitySelfThinning.h
44 lines (35 loc) · 1.26 KB
/
TestDensitySelfThinning.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
//---------------------------------------------------------------------------
// TestDensitySelfThinning.h
//---------------------------------------------------------------------------
#if !defined(TestDensitySelfThinning_H)
#define TestDensitySelfThinning_H
/**
* Writes a parameter file with legal parameter values for the behavior.
*/
const char* WriteDensitySelfThinningXMLFile1();
/**
* Writes a parameter file with a timestep greater than 1.
*/
const char* WriteDensitySelfThinningXMLErrorFile1();
/**
* Writes a parameter file that passes adults to the behavior.
*/
const char* WriteDensitySelfThinningXMLErrorFile2();
/**
* Writes a parameter file with a negative SelfThinRadius parameter.
*/
const char* WriteDensitySelfThinningXMLErrorFile3();
/**
* Writes a parameter file with a negative MinDensityForMort parameter.
*/
const char* WriteDensitySelfThinningXMLErrorFile4();
/**
* Writes a parameter file with a negative SelfThinAsymptote parameter.
*/
const char* WriteDensitySelfThinningXMLErrorFile5();
/**
* Writes a parameter file with a negative SelfThinDensityEffect parameter.
*/
const char* WriteDensitySelfThinningXMLErrorFile6();
//---------------------------------------------------------------------------
#endif // TestDensitySelfThinning_H