(self, comp, benchmark)
| 1091 | return operands |
| 1092 | |
| 1093 | def assert_path_equal(self, comp, benchmark): |
| 1094 | # Checks if list of tuples are equivalent |
| 1095 | ret = (len(comp) == len(benchmark)) |
| 1096 | assert_(ret) |
| 1097 | for pos in range(len(comp) - 1): |
| 1098 | ret &= isinstance(comp[pos + 1], tuple) |
| 1099 | ret &= (comp[pos + 1] == benchmark[pos + 1]) |
| 1100 | assert_(ret) |
| 1101 | |
| 1102 | def test_memory_contraints(self): |
| 1103 | # Ensure memory constraints are satisfied |
no test coverage detected