Skip to content

Commit

Permalink
another if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
JintaoWu98 committed Sep 28, 2024
1 parent 6a708a8 commit 7b6b388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def schedule_jobs(self):
continue
job_list = self.running_jobs[label]
for job_name in job_list:
if 'conformer' in job_name:
if ('conformer' in job_name or 'sp' in job_name) and not conformer_jobs_done:
i = get_i_from_job_name(job_name)
job = self.job_dict[label]['conformers'][i]
if not (job.job_id in self.server_job_ids and job.job_id not in self.completed_incore_jobs):
Expand Down

0 comments on commit 7b6b388

Please sign in to comment.