Skip to content

Commit b7e380f

Browse files
committed
update old algo original name
using new names in renaming old algos for presentation of the results
1 parent e15867d commit b7e380f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

revalidation/initial_contacts/_01_icd_analysis.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
# Below are the list of algorithms that we will compare.
2727
# Note, that we use the prefix "new" to refer to the reimplemented python algorithms and "orig" to refer to the
2828
# original matlab algorithms.
29+
30+
# Note also that the IcdIonescu algorithm is the reimplementation of the Ani_McCamley algorithm in the original
31+
# matlab algorithms. The other two algorithms (IcdShinImproved and IcdHKLeeImproved) are actually cadence algorithms.
32+
# As they can also be used to detect initial contacts, we present their results as well.
2933
algorithms = {
3034
"IcdIonescu": ("IcdIonescu", "new"),
3135
"IcdShinImproved": ("IcdShinImproved", "new"),
@@ -34,7 +38,7 @@
3438
# We only load the matlab algorithms that were also reimplemented
3539
algorithms.update(
3640
{
37-
"matlab_Ani_McCamley": ("Ani_McCamley", "orig"),
41+
"matlab_Ani_McCamley": ("IcdIonescu", "orig"),
3842
}
3943
)
4044

0 commit comments

Comments
 (0)