summaryrefslogtreecommitdiff
path: root/sci_gateway/cpp/sci_iofunc.cpp
diff options
context:
space:
mode:
authorGeorgey2017-07-05 11:43:12 +0530
committerGeorgey2017-07-05 11:43:12 +0530
commit66089674c189f557b401f2ad0cf6b35354caadfa (patch)
treed174ef3f680e241e8bcbc460727c622af260b942 /sci_gateway/cpp/sci_iofunc.cpp
parent536bbd0cd8e4ca5b29d07e472e682bbb5db63a97 (diff)
downloadFOSSEE-Optimization-toolbox-66089674c189f557b401f2ad0cf6b35354caadfa.tar.gz
FOSSEE-Optimization-toolbox-66089674c189f557b401f2ad0cf6b35354caadfa.tar.bz2
FOSSEE-Optimization-toolbox-66089674c189f557b401f2ad0cf6b35354caadfa.zip
Added gateway files
Diffstat (limited to 'sci_gateway/cpp/sci_iofunc.cpp')
-rw-r--r--sci_gateway/cpp/sci_iofunc.cpp102
1 files changed, 89 insertions, 13 deletions
diff --git a/sci_gateway/cpp/sci_iofunc.cpp b/sci_gateway/cpp/sci_iofunc.cpp
index 8168743..6a41aed 100644
--- a/sci_gateway/cpp/sci_iofunc.cpp
+++ b/sci_gateway/cpp/sci_iofunc.cpp
@@ -1,22 +1,17 @@
-// Copyright (C) 2015 - IIT Bombay - FOSSEE
-//
-// This file must be used under the terms of the CeCILL.
-// This source file is licensed as described in the file COPYING, which
-// you should have received as part of this distribution. The terms
-// are also available at
-// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
-// Author: Harpreet Singh and Keyur Joshi
-// Organization: FOSSEE, IIT Bombay
-// Email: toolbox@scilab.in
+// Symphony Toolbox for Scilab
+// (Definition of) Functions for input and output from Scilab
+// By Keyur Joshi
#include "api_scilab.h"
#include "Scierror.h"
#include "sciprint.h"
#include "BOOL.h"
#include <localization.h>
+#include "call_scilab.h"
+#include <string.h>
-using namespace std;
+using namespace std;
int getFunctionFromScilab(int argNum, int **dest)
{
//data declarations
@@ -43,7 +38,6 @@ int getFunctionFromScilab(int argNum, int **dest)
}
-
int getDoubleFromScilab(int argNum, double *dest)
{
//data declarations
@@ -240,6 +234,88 @@ int getStringFromScilab(int argNum,char **dest)
}
+bool getFunctionFromScilab1(int n,char name[], double *x,int posFirstElementOnStackForSF,int nOfRhsOnSF,int nOfLhsOnSF, double **dest)
+{
+ double check;
+ createMatrixOfDouble(pvApiCtx, posFirstElementOnStackForSF, 1, n, x);
+ C2F(scistring)(&posFirstElementOnStackForSF,name,&nOfLhsOnSF,&nOfRhsOnSF,(unsigned long)strlen(name));
+
+ if(getDoubleFromScilab(posFirstElementOnStackForSF+1,&check))
+ {
+ return true;
+ }
+ if (check==1)
+ {
+ return true;
+ }
+ else
+ {
+ int x_rows, x_cols;
+ if(getDoubleMatrixFromScilab(posFirstElementOnStackForSF, &x_rows, &x_cols, dest))
+ {
+ sciprint("No results ");
+ return true;
+
+ }
+ }
+ return 0;
+}
+
+bool getHessFromScilab(int n,int numConstr_,char name[], double *x,double *obj,double *lambda,int posFirstElementOnStackForSF,int nOfRhsOnSF,int nOfLhsOnSF, double **dest)
+{
+ double check;
+ createMatrixOfDouble(pvApiCtx, posFirstElementOnStackForSF, 1, n, x);
+ createMatrixOfDouble(pvApiCtx, posFirstElementOnStackForSF+1, 1, 1, obj);
+ createMatrixOfDouble(pvApiCtx, posFirstElementOnStackForSF+2, 1, numConstr_, lambda);
+ C2F(scistring)(&posFirstElementOnStackForSF,name,&nOfLhsOnSF,&nOfRhsOnSF,(unsigned long)strlen(name));
+
+ if(getDoubleFromScilab(posFirstElementOnStackForSF+1,&check))
+ {
+ return true;
+ }
+ if (check==1)
+ {
+ return true;
+ }
+ else
+ {
+ int x_rows, x_cols;
+ if(getDoubleMatrixFromScilab(posFirstElementOnStackForSF, &x_rows, &x_cols, dest))
+ {
+ sciprint("No results ");
+ return 1;
+ }
+ }
+ return 0;
+}
+
+int getIntMatrixFromScilab(int argNum, int *rows, int *cols, int **dest)
+{
+ int *varAddress;
+ SciErr sciErr;
+ const char errMsg[]="Wrong type for input argument #%d: A matrix of integer is expected.\n";
+ const int errNum=999;
+ //same steps as above
+ sciErr = getVarAddressFromPosition(pvApiCtx, argNum, &varAddress);
+ if (sciErr.iErr)
+ {
+ printError(&sciErr, 0);
+ return 1;
+ }
+ // if ( !isIntegerType(pvApiCtx,varAddress) || isVarComplex(pvApiCtx,varAddress) )
+ // {
+ // Scierror(errNum,errMsg,argNum);
+ // return 1;
+ // }
+ getMatrixOfInteger32(pvApiCtx, varAddress, rows, cols, dest);
+ if (sciErr.iErr)
+ {
+ printError(&sciErr, 0);
+ return 1;
+ }
+ return 0;
+}
+
int return0toScilab()
{
int iRet;
@@ -274,7 +350,7 @@ int returnDoubleToScilab(double retVal)
return 0;
}
-int returnDoubleMatrixToScilab(int itemPos, int rows, int cols, const double *dest)
+int returnDoubleMatrixToScilab(int itemPos, int rows, int cols, double *dest)
{
SciErr sciErr;
//same steps as above