summaryrefslogtreecommitdiff
path: root/newstructure/sci_gateway/cpp/sci_iofunc.hpp
diff options
context:
space:
mode:
authorHarpreet2016-09-03 00:36:51 +0530
committerHarpreet2016-09-03 00:36:51 +0530
commita0d9443af147e949c1e6a01ac24749d12593ec5b (patch)
tree1a1955c5482ae608fd7f618b06f4ecc6a0d39a23 /newstructure/sci_gateway/cpp/sci_iofunc.hpp
parent4b64cf486f5c999fd8167758cae27839f3b50848 (diff)
downloadFOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.gz
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.bz2
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.zip
cbcintlinprog added
Diffstat (limited to 'newstructure/sci_gateway/cpp/sci_iofunc.hpp')
-rw-r--r--newstructure/sci_gateway/cpp/sci_iofunc.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/newstructure/sci_gateway/cpp/sci_iofunc.hpp b/newstructure/sci_gateway/cpp/sci_iofunc.hpp
deleted file mode 100644
index 7e18951..0000000
--- a/newstructure/sci_gateway/cpp/sci_iofunc.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-// Symphony Toolbox for Scilab
-// (Declaration of) Functions for input and output from Scilab
-// By Keyur Joshi
-
-#ifndef SCI_IOFUNCHEADER
-#define SCI_IOFUNCHEADER
-
-//input
-int getDoubleFromScilab(int argNum, double *dest);
-int getUIntFromScilab(int argNum, int *dest);
-int getIntFromScilab(int argNum, int *dest);
-int getFixedSizeDoubleMatrixFromScilab(int argNum, int rows, int cols, double **dest);
-int getDoubleMatrixFromScilab(int argNum, int *rows, int *cols, double **dest);
-int getFixedSizeDoubleMatrixInList(int argNum, int itemPos, int rows, int cols, double **dest);
-int getStringFromScilab(int argNum,char** dest);
-bool getFunctionFromScilab(int n,char name[], double *x,int posFirstElementOnStackForSF,int nOfRhsOnSF,int nOfLhsOnSF, double **dest);
-bool getHessFromScilab(int n,int numConstr_,char name[], double *x,double *obj,double *lambda,int posFirstElementOnStackForSF,int nOfRhsOnSF,int nOfLhsOnSF, double **dest);
-
-//output
-int return0toScilab();
-int returnDoubleToScilab(double retVal);
-int returnDoubleMatrixToScilab(int itemPos, int rows, int cols, double *dest);
-int returnIntegerMatrixToScilab(int itemPos, int rows, int cols, int *dest);
-
-#endif //SCI_IOFUNCHEADER