comparison scripts/nomad/nomad-parameters.txt @ 1186:7117a31555c1

Etienne Beauchamp s work on optimization with Nomad software
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 21 Jun 2022 17:06:06 -0400
parents
children ccab20f85710
comparison
equal deleted inserted replaced
1177:aa88acf06876 1186:7117a31555c1
1 DIMENSION 8 # number of variables
2
3 BB_EXE "$python3 site-parameters-optimization.py" # 'site-parameters-optimization.py' is the blackbox program
4 BB_OUTPUT_TYPE OBJ # object will be minimized
5
6 X0 initial-parameters.txt # starting point
7
8 LOWER_BOUND ( 0 0 1 0.01 2 0.5 0.1 1 ) # all variables' lower bounds
9 UPPER_BOUND ( 1 10 10 0.3 100 100 100 15 ) # all variables' upper bounds
10
11 MAX_BB_EVAL 500 # the algorithm terminates when
12 # n black-box evaluations have
13 # been made
14
15 # TMP_DIR /tmp # indicates a directory where
16 # temporary files are put
17 # (increases performance by ~100%
18 # if you're working on a network
19 # account and if TMP_DIR is on a
20 # local disk)
21
22 DISPLAY_DEGREE 2
23
24 # DISPLAY_ALL_EVAL yes
25
26 DISPLAY_STATS BBE ( SOL ) OBJ # Display the number of evaluation (BBE),
27 # the current solution ( SOL ) and the objective
28
29 # STATS_FILE test.txt BBE ( SOL ) OBJ