blob: cad0490b99b355d0514ecc6b6cdeacd171f045fc (
plain)
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
|
// This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce : Please, do not edit this file
// ----------------------------------------------------------------------------
//
libFOSSEE_Optimizat_path = get_absolute_file_path('loader.sce');
//
// ulink previous function with same name
[bOK, ilib] = c_link('libFOSSEE_Optimization_Toolbox');
if bOK then
ulink(ilib);
end
//
list_functions = [ 'inter_fminunc';
'inter_fminbnd';
'inter_fmincon';
'sci_intqpipopt';
'sci_matrix_intlinprog';
'sci_mps_intlinprog';
];
addinter(libFOSSEE_Optimizat_path + filesep() + 'libFOSSEE_Optimization_Toolbox' + getdynlibext(), 'libFOSSEE_Optimization_Toolbox', list_functions);
// remove temp. variables on stack
clear libFOSSEE_Optimizat_path;
clear bOK;
clear ilib;
clear list_functions;
// ----------------------------------------------------------------------------
|