1function [QN,UN,RN,TN,CN,XN,runtime] = solver_jmt_analysis(sn, options)
2% [QN,UN,RN,TN,CN,XN,runtime] = SOLVER_JMT_ANALYSIS(SN, OPTIONS)
6cmd = [
'java -cp "',getJMTJarPath(self),filesep,
'JMT.jar" jmt.commandline.Jmt sim "',getFilePath(self),
'jsim',filesep,getFileName(self),
'.jsim" -seed ',num2str(options.seed)];
8 line_printf(
'JMT model: %s\n',[getFilePath(self),
'jsim',filesep,getFileName(self),
'.jsim']);
9 line_printf(
'JMT command: %s\n',cmd);
14 cmd = [
'java -cp "',getJMTJarPath(self),filesep,
'JMT.jar" jmt.commandline.Jmt sim "',getFilePath(self),
'jsim',filesep,getFileName(self),
'.jsim" -seed ',num2str(options.seed),
' --illegal-access=permit'];
15 [status] = system(cmd);
17 rt = java.lang.Runtime.getRuntime();