blob: f4801ed3d442f1e8a4fa79f15d5282a170343246 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce : Please, do not edit this file
// ----------------------------------------------------------------------------
//
libFOSSEE_Scilab_in_path = get_absolute_file_path('loader.sce');
//
// ulink previous function with same name
[bOK, ilib] = c_link('libFOSSEE_Scilab_intqpipopt');
if bOK then
ulink(ilib);
end
//
list_functions = [ 'inter_fminunc';
'inter_fminbnd';
'inter_fmincon';
];
addinter(libFOSSEE_Scilab_in_path + filesep() + 'libFOSSEE_Scilab_intqpipopt' + getdynlibext(), 'libFOSSEE_Scilab_intqpipopt', list_functions);
// remove temp. variables on stack
clear libFOSSEE_Scilab_in_path;
clear bOK;
clear ilib;
clear list_functions;
// ----------------------------------------------------------------------------
|