diff options
author | Harpreet | 2015-09-23 18:22:28 +0530 |
---|---|---|
committer | Harpreet | 2015-09-23 18:22:28 +0530 |
commit | e34332a406e4f3fba9b99c6f9ec5138edfcc6aa2 (patch) | |
tree | a7dd948f18ddb1927d482a56b4a3b56486cb7e3d /sci_gateway/cpp/loader.sce | |
parent | 33bdd144438436b759bc8d0b0beba715f0e39e5d (diff) | |
download | FOSSEE-Optimization-toolbox-e34332a406e4f3fba9b99c6f9ec5138edfcc6aa2.tar.gz FOSSEE-Optimization-toolbox-e34332a406e4f3fba9b99c6f9ec5138edfcc6aa2.tar.bz2 FOSSEE-Optimization-toolbox-e34332a406e4f3fba9b99c6f9ec5138edfcc6aa2.zip |
qpipopt added
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; |