diff options
Diffstat (limited to 'sci_gateway/cpp/loader.sce')
-rw-r--r-- | sci_gateway/cpp/loader.sce | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sci_gateway/cpp/loader.sce b/sci_gateway/cpp/loader.sce index 561a415..fe1d630 100644 --- a/sci_gateway/cpp/loader.sce +++ b/sci_gateway/cpp/loader.sce @@ -2,10 +2,10 @@ // Generated by builder.sce : Please, do not edit this file // ---------------------------------------------------------------------------- // -libsymphonytools_path = get_absolute_file_path('loader.sce'); +libFAMOS_path = get_absolute_file_path('loader.sce'); // // ulink previous function with same name -[bOK, ilib] = c_link('libsymphonytools'); +[bOK, ilib] = c_link('libFAMOS'); if bOK then ulink(ilib); end @@ -68,10 +68,11 @@ list_functions = [ 'sym_open'; 'sym_getObjVal'; 'sym_getIterCount'; 'sym_getConstrActivity'; + 'solveqp'; ]; -addinter(libsymphonytools_path + filesep() + 'libsymphonytools' + getdynlibext(), 'libsymphonytools', list_functions); +addinter(libFAMOS_path + filesep() + 'libFAMOS' + getdynlibext(), 'libFAMOS', list_functions); // remove temp. variables on stack -clear libsymphonytools_path; +clear libFAMOS_path; clear bOK; clear ilib; clear list_functions; |