File tree 1 file changed +5
-1
lines changed
revalidation/initial_contacts
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 26
26
# Below are the list of algorithms that we will compare.
27
27
# Note, that we use the prefix "new" to refer to the reimplemented python algorithms and "orig" to refer to the
28
28
# 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.
29
33
algorithms = {
30
34
"IcdIonescu" : ("IcdIonescu" , "new" ),
31
35
"IcdShinImproved" : ("IcdShinImproved" , "new" ),
34
38
# We only load the matlab algorithms that were also reimplemented
35
39
algorithms .update (
36
40
{
37
- "matlab_Ani_McCamley" : ("Ani_McCamley " , "orig" ),
41
+ "matlab_Ani_McCamley" : ("IcdIonescu " , "orig" ),
38
42
}
39
43
)
40
44
You can’t perform that action at this time.
0 commit comments