summaryrefslogtreecommitdiff
path: root/src/Scilab2C/SCI2CGeneral/SCI2CInputParameters.sce
diff options
context:
space:
mode:
Diffstat (limited to 'src/Scilab2C/SCI2CGeneral/SCI2CInputParameters.sce')
-rw-r--r--src/Scilab2C/SCI2CGeneral/SCI2CInputParameters.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Scilab2C/SCI2CGeneral/SCI2CInputParameters.sce b/src/Scilab2C/SCI2CGeneral/SCI2CInputParameters.sce
new file mode 100644
index 00000000..b8771326
--- /dev/null
+++ b/src/Scilab2C/SCI2CGeneral/SCI2CInputParameters.sce
@@ -0,0 +1,14 @@
+// This script contains all the input parameters needed by the SCI2C tool.
+ScilabMainFile = 'C:\Nutricato\Projects\FP6_hArtes\Software\SVNScilab2C\src\Scilab2C\Tests\foo.sci'; // Input Parameter.
+
+// Directory where all the products of SCI2C tool will be written.
+ResultDir = 'Results';
+
+// Memory allocation.
+WorkAreaSizeBytes = 2000*8; // 2000 locations of double
+TotTempScalarVars = 20; // maximum number of temporary scalar variables that can be used.
+
+// Paths that contain the .sci files written by the user.
+UserSciFilesPaths = ...
+ ['C:\Nutricato\Projects\FP6_hArtes\Software\SVNScilab2C\src\Scilab2C\Tests';...
+ 'C:\Nutricato\Projects\FP6_hArtes\Software\SVNScilab2C\src\Scilab2C\'];