Changeset 18368
- Timestamp:
- 08/12/14 16:12:40 (11 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/clusters/generic_static.m
r18366 r18368 2 2 % 3 3 % Usage: 4 % cluster=generic_static .m('name','astrid','np',3);4 % cluster=generic_static('name','astrid','np',3); 5 5 6 classdef generic_static .m6 classdef generic_static 7 7 properties (SetAccess=public) 8 8 % {{{ … … 10 10 np=1; 11 11 codepath=fileparts(which('issm.exe')); 12 executionpath = '.'; 13 interactive = 1; 12 14 shell='/bin/sh'; 13 15 %}}} 14 16 end 15 17 methods 16 function cluster=generic_static .m(varargin) % {{{18 function cluster=generic_static(varargin) % {{{ 17 19 18 20 %use provided options to change fields -
issm/trunk-jpl/src/m/solve/waitonlock.m
r17591 r18368 27 27 28 28 %If we are using the generic cluster in interactive mode, job is already complete 29 if isa(cluster,'generic') & cluster.interactive29 if (isa(cluster,'generic') & cluster.interactive) | isa(cluster,'generic_static'), 30 30 %We are in interactive mode, no need to check for job completion 31 31 ispresent=1;
Note:
See TracChangeset
for help on using the changeset viewer.