TQREJSY
Fortran |
TQREJSY(IWSG, IWSE) |
|
---|---|---|
C-interface |
tq_rejsy(TC_INT* iwsg,TC_INT* iwse); |
|
Full name: |
Reject system. |
|
Purpose: |
Reject the defined system and reinitiate the workspace in order to do a completely new calculation for a different system selected from the same or a different database. |
|
Comments: |
In any application programs, either TQINI or TQINI3 should be called only once. If there is a need to do a completely new calculation on a totally different system without exiting the application program, one should call TQREJS instead before going to (open a new database and) define a new system, get data, and make calculations. |
|
Arguments |
||
Name |
Type |
Value set on call or returned |
IWSG |
Integer array |
Workspace |
IWSE |
Integer array |
Workspace |

Note the following conventions to distinguish between the programming languages.
- Routines starting with TQXXX, for example, TQGDAT, are in the Fortran interface
- Routines starting with tq_xxxx, for example tq_gdat, are in the C-interface.
- In Fortran, all routines are subroutines and do not return any values except where explicitly declared as functions.
- All the C procedures are declared as void and do not return any values except where explicitly otherwise declared.
An example of how to read the subroutine definitions.