Skip to content

Commit 1d45873

Browse files
committed
[IBM] Bug fix - new distribute approach.
1 parent 599ed61 commit 1d45873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Fast/Fast/Fast/IBM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,7 +1212,7 @@ def _distribute(tIn, tcIn, NP, algorithm='graph', tc2In=None, useCom='ID'):
12121212
if isinstance(tIn , str)==False or isinstance(tcIn, str)==False or (isinstance(tc2In, str)==False and tc2In):
12131213
print("ERROR:: The arguments for Fast/Apps/IBM.py have changed. tIn, tcIn, & tc2In must be a filename. Exiting...", flush=True)
12141214
exit()
1215-
tInLocal = [tIn,tcIn]
1215+
tInLocal = [tcIn,tIn]
12161216
if tc2In: tInLocal.append(tc2In)
12171217
D2._distributeSkeletonTree(tInLocal, NP, algorithm=algorithm, useCom=useCom)
12181218
return None

0 commit comments

Comments
 (0)