-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_optsuite
executable file
·461 lines (410 loc) · 12 KB
/
install_optsuite
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
#!/bin/bash
# install_optsuite -
# a general installer for GALAHAD/CUTEst/SIFDecode
# 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
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
error '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 [[ ! -d "$PWD/../galahad" || ! -f "$PWD/../galahad/version" ]]; 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 QP packages and their dependencies'
echo ' (4) the regularised quadratic solvers and their dependencies'
echo ' (5) FILTRANE and its 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="filtrane"
;;
*)
echo ' Please give an integer between 1 and 5'
esac
done
CORRECT_INTERFACE="false"
while [ $CORRECT_INTERFACE == "false" ]; do
echo ' Select required interfaces to GALAHAD packages'
echo ' (the chosen subset will optionally be installed below)'
echo
echo ' (E) Provide all available interfaces (CUTEst, Matlab, AMPL)'
if [[ $SUBSET == "lanb" ]] ; then
echo ' (S) Provide an interface to SIF'
elif [[ $SUBSET == "filtrane" ]] ; then
echo ' (C) Provide CUTEst interfaces'
else
echo ' (X) Provide all available interfaces except to Matlab'
echo ' (B) Provide all available interfaces except to AMPL'
echo ' (C) Provide CUTEst interfaces'
echo ' (M) Provide Matlab interfaces'
fi
if [[ $SUBSET == "all" || $SUBSET == "qp" || \
$SUBSET == "filtrane" ]] ; then
echo ' (A) Provide AMPL interfaces'
fi
echo ' (N) Standalone - no interfaces required'
read CHOICE
CHOICE=`echo $CHOICE | tr a-z A-Z`
case $CHOICE in
"E")
CORRECT_INTERFACE="true"
INTERFACE="all"
MATLAB_REQUIRED=1
AMPL_REQUIRED=1
CUTEST_REQUIRED=1
;;
"X")
CORRECT_INTERFACE="true"
INTERFACE="cutestampl"
AMPL_REQUIRED=1
CUTEST_REQUIRED=1
;;
"N")
CORRECT_INTERFACE="true"
INTERFACE="none"
let use_cutest=0
let use_sifdecode=0
;;
"C")
CORRECT_INTERFACE="true"
INTERFACE="cutest"
CUTEST_REQUIRED=1
;;
"S")
CORRECT_INTERFACE="true"
INTERFACE="sif"
let use_cutest=0
;;
"M")
CORRECT_INTERFACE="true"
INTERFACE="matlab"
MATLAB_REQUIRED=1
;;
"B")
CORRECT_INTERFACE="true"
INTERFACE="cutestmatlab"
MATLAB_REQUIRED=1
CUTEST_REQUIRED=1
;;
"A")
CORRECT_INTERFACE="true"
INTERFACE="ampl"
CUTEST_REQUIRED=1
AMPL_REQUIRED=1
;;
*)
echo ' Invalid choice "'$CHOICE'". Please try again'
esac
done
fi
# do we wish to build cutest?
if (( $use_cutest )) ; then
if [[ $INTERFACE == "all" || $INTERFACE == "cutestampl" || \
$INTERFACE == "cutest" || $INTERFACE == "cutestmatlab" ]] ; then
let install_cutest=1
elif [[ $INTERFACE == "matlab" || $INTERFACE == "ampl" ]] ; then
let install_cutest=0
else
yesno_default_yes 'Do you wish to install CUTEst'
let install_cutest=$?
if (( $install_cutest )); then
CUTEST_REQUIRED=1
yesno_default_no 'Do you require the CUTEst-Matlab interface'
MATLAB_REQUIRED=$?
fi
fi
else
let install_cutest=0
fi
if (( $install_cutest )) ; then
if [[ -z "$CUTEST" || ! -f "$CUTEST/version" ]]; then
if [[ ! -d "$PWD/../cutest" || ! -f "$PWD/../cutest/version" ]]; 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 == "matlab" || $INTERFACE == "ampl" ]] ; 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 [[ ! -d "$PWD/../sifdecode" || ! -f "$PWD/../sifdecode/version" ]]; 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 interface from'
else
echo ' - CUTEst from'
fi
echo " - $CUTEST"
fi
(( $install_galahad )) && echo ' - GALAHAD from'
(( $install_galahad )) && echo " - $GALAHAD"
echo
topdir=$PWD
# architecture/compiler selection
. $ARCHDEFS/bin/select_arch
echo " Version for architecture $VERSION will be installed"
echo ""
# 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
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
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'