forked from amontoison/nomad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
118 lines (91 loc) · 5.7 KB
/
README.txt
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
###################################################################################
# #
# README #
# #
#---------------------------------------------------------------------------------#
# NOMAD - Nonlinear Optimization by Mesh Adaptive Direct Search - #
# #
# NOMAD - Version 4.0.0 has been created by #
# Viviane Rochon Montplaisir - Polytechnique Montreal #
# Christophe Tribes - Polytechnique Montreal #
# #
# The copyright of NOMAD - version 4.0.0 is owned by #
# Charles Audet - Polytechnique Montreal #
# Sebastien Le Digabel - Polytechnique Montreal #
# Viviane Rochon Montplaisir - Polytechnique Montreal #
# Christophe Tribes - Polytechnique Montreal #
# #
# NOMAD v4 has been funded by Rio Tinto, Hydro-Québec, NSERC (Natural #
# Sciences and Engineering Research Council of Canada), InnovÉÉ (Innovation #
# en Énergie Électrique) and IVADO (The Institute for Data Valorization) #
# #
# NOMAD v3 was created and developed by Charles Audet, Sebastien Le Digabel, #
# Christophe Tribes and Viviane Rochon Montplaisir and was funded by AFOSR #
# and Exxon Mobil. #
# #
# NOMAD v1 and v2 were created and developed by Mark Abramson, Charles Audet, #
# Gilles Couture, and John E. Dennis Jr., and were funded by AFOSR and #
# Exxon Mobil. #
# #
# Contact information: #
# Polytechnique Montreal - GERAD #
# C.P. 6079, Succ. Centre-ville, Montreal (Quebec) H3C 3A7 Canada #
# e-mail: [email protected] #
# phone : 1-514-340-6053 #6928 #
# fax : 1-514-340-5665 #
# #
# This program is free software: you can redistribute it and/or modify it #
# under the terms of the GNU Lesser General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or (at your #
# option) any later version. #
# #
# This program is distributed in the hope that it will be useful, but WITHOUT #
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License #
# for more details. #
# #
# You should have received a copy of the GNU Lesser General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
# You can find information on the NOMAD software at www.gerad.ca/nomad #
#---------------------------------------------------------------------------------#
DISCLAIMER :
This is a Beta version of NOMAD 4.0.0. It represents work in progress and
subject to change without notice.
DESCRIPTION :
NOMAD is a C++ implementation of the Mesh Adaptive Direct Search (MADS)
algorithm, designed for constrained optimization of black-box functions.
The algorithms implemented are based on the book
"Derivative-Free and Blackbox Optimization", by Charles Audet and Warren Hare,
Springer 2017.
WEB PAGE :
https://www.gerad.ca/nomad/
CONTACT :
USAGE :
NOMAD 4 usage is similar to NOMAD 3, including batch and library modes.
COMPILATION :
On Linux, Unix, and Mac OS X, NOMAD can be compiled using the makefile
located in the "src" directory.
Make options for Nomad 4:
If OpenMP is not available:
make NOOMP=1
To compile without using sgtelib:
make USE_SGTELIB=0
To compile in Debug mode:
make VARIANT=debug
The executable "nomad" will be produced to directory:
build/release/bin/ (build/debug/bin/ when in debug mode).
EXAMPLES :
Batch Mode:
There are examples in batch mode in examples/basic/batch/.
In each directory, the blackbox (usually named bb.exe) may be compiled using the
provided makefile.
The problem may be resolved using NOMAD and the parameter file param.txt:
nomad param.txt
Library Mode:
There are examples in library mode in examples/basic/library/.
In each directory, the executable may be compiled using the provided makefile
(using the same flags as for the NOMAD compilation). The problems may be resolved
by execution, for instance:
example_lib.exe