1Blurb::
2Shows mesh adaptive search's internally held list of all evaluations
3
4Description::
5If set, \c display_all_evaluations will instruct the mesh adaptive
6direct search method to print out its own record of all evaluations.
7The information reported may be controlled using
8\ref method-mesh_adaptive_search-display_format.
9
10<b> Default Behavior </b>
11
12By default, mesh adaptive direct search does not report information on
13all evaluations, only on those for which an improvement in the
14objective function is found.
15
16<b> Expected Outputs </b>
17
18The information specified by \c display_format will be reported to the
19screen for every function evaluation.
20
21<b> Usage Tips </b>
22
23This will most likely only be useful for power users who want to
24understand and/or report more detailed information on method behavior.
25
26Topics::
27
28Examples::
29
30The following example shows the syntax for specifying \c
31display_all_evaluations.
32
33\verbatim
34method
35  mesh_adaptive_search
36    display_all_evaluations
37    max_function evaluations=20
38    seed = 1234
39\endverbatim
40
41Note that the output below reports information (default for \c
42display_format) for all function evaluations.
43
44\verbatim
45MADS run {
46
47	BBE	OBJ
48
49	 1	17.0625000000
50	 2	1.0625000000
51	 3	1297.0625000000
52	 4	257.0625000000
53	 5	81.0625000000
54	 6	151.0625000000
55	 7	1051.0625000000
56	 8	40.0625000000
57	 9	17.0625000000
58	10	40.0625000000
59	11	1.0625000000
60	12	102.0625000000
61	13	0.0625000000
62	14	231.0625000000
63	15	16.0625000000
64	16	5.0625000000
65	17	16.0625000000
66	18	71.0625000000
67	19	0.0625000000
68	20	1.0625000000
69
70} end of run (max number of blackbox evaluations)
71
72blackbox evaluations                     : 20
73best feasible solution                   : ( 1 0.5 1 ) h=0 f=0.0625
74\endverbatim
75
76That is in contrast with what would be reported by default.
77
78\verbatim
79MADS run {
80
81	BBE	OBJ
82
83	 1	17.0625000000
84	 2	1.0625000000
85	13	0.0625000000
86	20	0.0625000000
87
88} end of run (max number of blackbox evaluations)
89
90blackbox evaluations                     : 20
91best feasible solution                   : ( 1 0.5 1 ) h=0 f=0.0625
92\endverbatim
93
94Theory::
95Faq::
96See_Also::
97method-mesh_adaptive_search-display_format
98