-
Notifications
You must be signed in to change notification settings - Fork 3
/
install_optrove
executable file
·478 lines (429 loc) · 12.4 KB
/
install_optrove
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
#!/bin/bash
# install_optrove (formerly install_optsuite) -
# a general installer for GALAHAD/CUTEst/SIFDecode
# version for GALAHAD 5.1 (September 2024)
# set DRYRUN to 1 to test install scripts without actually installing
DRYRUN=0
#DRYRUN=1
# see if there is a specific build agenda
if [[ -e ./install_agenda ]] ; then
. ./install_agenda
elif [[ -e ./bin/install_agenda ]] ; then
. ./bin/install_agenda
else
let install_galahad=1
let install_cutest=1
let install_sifdecode=1
# error 'no install_agenda file in . or ./bin/'
# exit 80
fi
if (( $install_cutest )) ; then
let use_cutest=1
else
let use_cutest=0
fi
if (( $install_sifdecode )) ; then
let use_sifdecode=1
else
let use_sifdecode=0
fi
AMPL_REQUIRED=0
MATLAB_REQUIRED=0
CUTEST_REQUIRED=0
SIF_REQUIRED=0
C_REQUIRED=0
PYTHON_REQUIRED=0
PYTHONVERSION=0.0
SOABI=""
PYSITEPACKDIR=""
export GALAHAD_REQPREC=""
# if we're going to build anything, we need ARCHDefs
let install_archdefs=0
(( $install_sifdecode || $install_cutest || \
$install_galahad )) && let install_archdefs=1
if (( $install_archdefs )) ; then
if [[ -z "$ARCHDEFS" || ! -f "$ARCHDEFS/version" ]]; then
if [[ ! -d "$PWD/../archdefs" || ! -f "$PWD/../archdefs/version" ]]; then
echo 'environment variable ARCHDEFS is not set, nor does the
directory ../archdefs exist. Install the ARCHDefs package, set
the variable $ARCHDEFS to the archdefs directory and re-run.'
exit 1
else
export ARCHDEFS=$PWD/../archdefs
fi
fi
fi
# use generic, colourful helper functions
. $ARCHDEFS/bin/helper_functions
# do we wish to build galahad?
if (( $install_galahad )) ; then
yesno_default_yes 'Do you wish to install GALAHAD'
let install_galahad=$?
fi
if (( $install_galahad )); then
# if [[ -z "$GALAHAD" || ! -f "$GALAHAD/version" ]]; then
if [[ -z "$GALAHAD" ]]; then
# if [[ ! -d "$PWD/../galahad" || ! -f "$PWD/../galahad/version" ]]; then
if [[ ! -d "$PWD/../galahad" ]]; then
error 'environment variable GALAHAD is not set, nor does the
directory ../galahad exist. Install the GALAHAD package, set
the variable $GALAHAD to the galahad directory and re-run.'
exit 1
else
export GALAHAD=$PWD/../galahad
fi
fi
CORRECT_SUBSET="false"
while [ $CORRECT_SUBSET == "false" ]; do
echo ' Select required subset of GALAHAD packages'
echo ' (the chosen subset will optionally be installed below)'
echo
echo ' (1) Everything'
echo ' (2) LANCELOT B and its dependencies'
echo ' (3) the LP/QP packages and their dependencies'
echo ' (4) the regularised quadratic solvers and their dependencies'
echo ' (5) the un/bound-constrained solvers and their dependencies'
echo ' (6) FILTRANE and its dependencies'
echo ' (7) the global optimization solvers and their dependencies'
read CHOICE
case $CHOICE in
"1")
CORRECT_SUBSET="true"
SUBSET="all"
;;
"2")
CORRECT_SUBSET="true"
SUBSET="lanb"
;;
"3")
CORRECT_SUBSET="true"
SUBSET="qp"
;;
"4")
CORRECT_SUBSET="true"
SUBSET="rq"
;;
"5")
CORRECT_SUBSET="true"
SUBSET="ucbc"
;;
"6")
CORRECT_SUBSET="true"
SUBSET="filtrane"
;;
"7")
CORRECT_SUBSET="true"
SUBSET="go"
;;
*)
echo ' Please give an integer between 1 and 7'
esac
done
echo ' Select required interfaces to GALAHAD packages -'
if [[ $SUBSET == "lanb" ]] ; then
let install_cutest=0
yesno_default_no ' Do you require a SIF interface to LANCELOT'
let install_sifdecode=$?
if (( $install_sifdecode )); then
let use_sifdecode=1
let use_cutest=0
INTERFACE="sif"
SIF_REQUIRED=1
else
let use_sifdecode=0
INTERFACE="notsif"
fi
else
yesno_default_no ' Do you require CUTEst interfaces to GALAHAD'
let install_cutest=$?
if (( $install_cutest )); then
CUTEST_REQUIRED=1
else
let use_sifdecode=0
INTERFACE="notsif"
fi
fi
if [[ $SUBSET == "all" || $SUBSET == "qp" || \
$SUBSET == "filtrane" ]] ; then
yesno_default_no ' Do you require AMPL interfaces to GALAHAD'
let install_ampl=$?
if (( $install_ampl )); then
AMPL_REQUIRED=1
fi
fi
if [[ $SUBSET == "all" || $SUBSET == "qp" || \
$SUBSET == "rq" || $SUBSET == "ucbc" || \
$SUBSET == "go" ]] ; then
yesno_default_no ' Do you require MATLAB interfaces to GALAHAD'
let install_matlab=$?
if (( $install_matlab )); then
MATLAB_REQUIRED=1
fi
yesno_default_no ' Do you require C interfaces to GALAHAD'
let install_c=$?
if (( $install_c )); then
C_REQUIRED=1
fi
yesno_default_no ' Do you require python interfaces to GALAHAD'
let install_py=$?
if (( $install_py )); then
python3 -V &>/dev/null
status=$?
if (( $status == 0 )); then
PYTHON_REQUIRED=1
C_REQUIRED=1
PYVERSION=$(python3 -V | awk '{print $2}')
PYTHONVERSION=$(echo ${PYVERSION%.*})
SOABI=`python3 -c "import sysconfig ; print(sysconfig.get_config_var('SOABI'))"`
PYSITEPACKDIR=~/.local/lib/python${PYTHONVERSION}/site-packages
else
warning 'python3 does not seem to have been installed
no python interfaces will be provided'
fi
fi
fi
# do we wish to build cutest?
elif (( $install_cutest )); then
CUTEST_REQUIRED=1
yesno_default_no 'Do you require the CUTEst-Matlab interface'
MATLAB_REQUIRED=$?
fi
if (( $install_cutest )) ; then
# if [[ -z "$CUTEST" || ! -f "$CUTEST/version" ]]; then
if [[ -z "$CUTEST" ]]; then
# if [[ ! -d "$PWD/../cutest" || ! -f "$PWD/../cutest/version" ]]; then
if [[ ! -d "$PWD/../cutest" ]]; then
error 'environment variable CUTEST is not set, nor does the
directory ../cutest exist. Install the CUTEst package, set
the variable $CUTEST to the cutest directory and re-run.'
exit 1
else
export CUTEST=$PWD/../cutest
fi
fi
fi
# do we wish to build sifdecode?
if (( $use_sifdecode )) ; then
if (( $install_cutest )); then
let install_sifdecode=1
elif [[ $INTERFACE == "sif" ]] ; then
let install_sifdecode=1
elif [[ $INTERFACE == "notsif" ]] ; then
let install_sifdecode=0
else
yesno_default_yes 'Do you wish to install SIFDecode'
let install_sifdecode=$?
fi
else
let install_sifdecode=0
fi
if (( $install_sifdecode )) ; then
# if [[ -z "$SIFDECODE" || ! -f "$SIFDECODE/version" ]]; then
if [[ -z "$SIFDECODE" ]]; then
# if [[ ! -d "$PWD/../sifdecode" || ! -f "$PWD/../sifdecode/version" ]]; then
if [[ ! -d "$PWD/../sifdecode" ]]; then
error 'environment variable SIFDECODE is not set, nor does the
directory ../sifdecode exist. Install the SIFDecode package, set
the variable $SIFDECODE to the sifdecode directory and re-run.'
exit 1
else
export SIFDECODE=$PWD/../sifdecode
fi
fi
fi
if (( $install_archdefs )) ; then
echo -e '\nBuild schedule:'
else
echo -e '\nNothing to build'
exit 123
fi
(( $install_sifdecode )) && echo ' - SIFDecode from'
(( $install_sifdecode )) && echo " $SIFDECODE"
if (( $install_cutest )) ; then
if (( $MATLAB_REQUIRED )) ; then
echo ' - CUTEst with Matlab interfaces from'
else
echo ' - CUTEst from'
fi
echo " - $CUTEST"
fi
if (( $install_galahad )) ; then
if (( $MATLAB_REQUIRED )) ; then
if (( $C_REQUIRED )) ; then
echo ' - GALAHAD with C and Matlab interfaces from'
else
echo ' - GALAHAD with Matlab interfaces from'
fi
else
if (( $C_REQUIRED )) ; then
echo ' - GALAHAD with C interfaces from'
else
echo ' - GALAHAD from'
fi
fi
echo " - $GALAHAD"
fi
echo
topdir=$PWD
# architecture/compiler selection
. $ARCHDEFS/bin/select_arch
echo " Version for architecture $VERSION will be installed"
echo ""
#echo "ssids 3 ? " $SSIDS
# install sifdecode if required
if (( $install_sifdecode )); then
echo ' Installing SIFDecode ...'
cd $SIFDECODE
. ./bin/install_sifdecode_main
if [[ ! $? ]]; then
error 'An error occurred while installing SIFDecode.'
exit $?
fi
cd $topdir
fi
#exit 987
# install cutest if required
if (( $install_cutest )); then
echo ' Installing CUTEst ...'
cd $CUTEST
. ./bin/install_cutest_main
if [[ ! $? ]]; then
error 'An error occurred while installing CUTEst.'
exit $?
fi
cd $topdir
fi
#exit 666
# install galahad if required
if (( $install_galahad )); then
echo ' Installing GALAHAD ...'
cd $GALAHAD
. ./bin/install_galahad_main
if [[ ! $? ]]; then
error 'An error occurred while installing GALAHAD.'
exit $?
fi
cd $topdir
fi
export -n GALAHAD_REQPREC
success 'All builds succeeded!'
echo ""
echo " ----------------- for csh/tcsh users -----------------------------"
echo ""
echo " You should now add the following to your .cshrc file:"
echo ""
echo " setenv ARCHDEFS $ARCHDEFS"
if (( $install_sifdecode )); then
echo " setenv SIFDECODE $SIFDECODE"
fi
if (( $install_cutest )); then
echo " setenv CUTEST $CUTEST"
fi
if (( $install_galahad )); then
echo " setenv GALAHAD $GALAHAD"
fi
if (( $install_sifdecode )); then
echo ' set path=(${SIFDECODE}/bin $path)'
fi
if (( $install_cutest )); then
echo ' set path=(${CUTEST}/bin $path)'
fi
if (( $install_galahad )); then
echo ' set path=(${GALAHAD}/bin $path)'
fi
if (( $install_sifdecode )); then
echo ' setenv MANPATH ${SIFDECODE}/man:${MANPATH}'
fi
if (( $install_cutest )); then
echo ' setenv MANPATH ${CUTEST}/man:${MANPATH}'
fi
if (( $install_galahad )); then
echo ' setenv MANPATH ${GALAHAD}/man:${MANPATH}'
fi
if (( $C_REQUIRED )); then
echo ' setenv INCLUDE ${GALAHAD}/include:${INCLUDE}'
fi
echo ""
echo " Optionally, if you also wish this to be your default version, set"
echo ""
echo " setenv MYARCH $VERSION"
if (( $MATLAB_REQUIRED )); then
echo " setenv MYMATLABARCH $VERSION"
echo ""
echo " set MYMATLAB so that \$MYMATLAB/bin contains Matlab's mex executable:"
echo ""
echo " setenv MYMATLAB [directory containing your installed Matlab]"
if (( $install_cutest )) || (( $install_galahad )); then
echo ""
echo " and possibly extend your Matlab search path with"
echo ""
if (( $install_cutest )); then
echo ' setenv MATLABPATH ${CUTEST}/src/matlab:$(MATLABPATH)'
fi
if (( $install_galahad )); then
echo ' setenv MATLABPATH ${GALAHAD}/src/matlab:$(MATLABPATH)'
fi
fi
fi
echo ""
echo " Finally, remember to setenv MASTSIF to your SIF test-problem directory"
echo ""
echo " ----------------- for sh/bash users -----------------------------"
echo ""
echo " You should now add the following to your .bashrc file:"
echo ""
echo ' export ARCHDEFS="'"$ARCHDEFS"'"'
if (( $install_sifdecode )); then
echo ' export SIFDECODE="'"$SIFDECODE"'"'
fi
if (( $install_cutest )); then
echo ' export CUTEST="'"$CUTEST"'"'
fi
if (( $install_galahad )); then
echo ' export GALAHAD="'"$GALAHAD"'"'
fi
if (( $install_sifdecode )); then
echo ' export PATH="${SIFDECODE}/bin:${PATH}"'
fi
if (( $install_cutest )); then
echo ' export PATH="${CUTEST}/bin:${PATH}"'
fi
if (( $install_galahad )); then
echo ' export PATH="${GALAHAD}/bin:${PATH}"'
fi
if (( $install_sifdecode )); then
echo ' export MANPATH="${SIFDECODE}/man:${MANPATH}"'
fi
if (( $install_cutest )); then
echo ' export MANPATH="${CUTEST}/man:${MANPATH}"'
fi
if (( $install_galahad )); then
echo ' export MANPATH="${GALAHAD}/man:${MANPATH}"'
fi
if (( $C_REQUIRED )); then
echo ' export INCLUDE="${GALAHAD}/include:${INCLUDE}"'
fi
echo ""
echo " Optionally, if you also wish this to be your default version, add"
echo ""
echo ' export MYARCH="'"$VERSION"'"'
if (( $MATLAB_REQUIRED )); then
echo ' export MYMATLABARCH="'"$VERSION"'"'
echo ""
echo " set MYMATLAB so that \$MYMATLAB/bin contains Matlab's mex executable:"
echo ""
echo " export MYMATLAB=[directory containing your installed Matlab]"
if (( $install_cutest )) || (( $install_galahad )); then
echo ""
echo " and possibly extend your Matlab search path with"
echo ""
if (( $install_cutest )); then
echo ' export MATLABPATH="${CUTEST}/src/matlab:$(MATLABPATH)"'
fi
if (( $install_galahad )); then
echo ' export MATLABPATH="${GALAHAD}/src/matlab:$(MATLABPATH)"'
fi
fi
fi
echo ""
echo ' Finally, remember to export MASTSIF="" to your SIF test-problem directory'