| 1160 | } |
| 1161 | |
| 1162 | bool ArrayRangeApproxEquals(const Array& left, const Array& right, int64_t left_start_idx, |
| 1163 | int64_t left_end_idx, int64_t right_start_idx, |
| 1164 | const EqualOptions& options) { |
| 1165 | const bool floating_approximate = true; |
| 1166 | return ArrayRangeEquals(left, right, left_start_idx, left_end_idx, right_start_idx, |
| 1167 | options, floating_approximate); |
| 1168 | } |
| 1169 | |
| 1170 | bool ArrayEquals(const Array& left, const Array& right, const EqualOptions& opts) { |
| 1171 | return ArrayEquals(left, right, opts, opts.use_atol()); |