/*
@Node Header
@Next Macro

Code:       solve.rexx
Author:     Russell Leighton
Revision:   16 Feb 1994

Comments:

Depending  on  the  setting  of  the variable 'remote' the solver is
either run locally (remote = 0) or on the remote machine (remote = 1).

@EndNode
@Node Macro
*/

options results

address ami2d 'get remote'
if result = 1 then call 'ami2d:macros/solve/rlin2d'
else call 'ami2d:macros/solve/lin2d'

exit
