You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.warn("average time to parse mmtf: " + (timeMMTF/NUMBER_OF_REPEATS));
130
-
logger.warn("average time to parse PDB : " + (timePDB/NUMBER_OF_REPEATS));
135
+
136
+
longtimePDB = (totalTimePDB/NUMBER_OF_REPEATS);
137
+
longtimeMMTF = (totalTimeMMTF/NUMBER_OF_REPEATS);
138
+
139
+
140
+
logger.warn("average time to parse mmtf: " + timeMMTF/(1000*1000) + " ms.");
141
+
logger.warn("average time to parse PDB : " + timePDB/(1000*1000) + " ms. ");
131
142
//
132
-
assertTrue( "It should not be the case, but it is faster to parse a PDB file ("+timePDB+" ms.) than MMTF ("+( timeMMTF)+" ms.)!",( timePDB) > ( timeMMTF));
143
+
assertTrue( "It should not be the case, but it is faster to parse a PDB file ("+timePDB+" ns.) than MMTF ("+( timeMMTF)+" ns.)!",( timePDB) > ( timeMMTF));
0 commit comments