Revert "scilab: runtime initialization needed in examples"

This reverts commit 54b84b8fa1.
This commit is contained in:
William S Fulton 2016-03-18 08:56:23 +00:00
commit 9d4a4439da
9 changed files with 1 additions and 9 deletions

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// ----- Object creation ----- // ----- Object creation -----

View file

@ -5,7 +5,7 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// Call our gcd() function // Call our gcd() function
x = 42; x = 42;

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
a = 37 a = 37
b = 42 b = 42

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// create a new matrix // create a new matrix
x = new_matrix(); x = new_matrix();

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// Test lib double matrix functions // Test lib double matrix functions
disp("Call lib function getDoubleMatrix()"); disp("Call lib function getDoubleMatrix()");

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// First create some objects using the pointer library. // First create some objects using the pointer library.
printf("Testing the pointer library\n") printf("Testing the pointer library\n")

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// Call our gcd() function // Call our gcd() function

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// Test use of a struct (Bar) // Test use of a struct (Bar)

View file

@ -5,7 +5,6 @@ if ierr <> 0 then
disp(lasterror()); disp(lasterror());
exit(ierr); exit(ierr);
end end
example_Init();
// Try to set the values of some global variables // Try to set the values of some global variables
ivar_set(42); ivar_set(42);