| 10 | namespace skip_data { |
| 11 | |
| 12 | bool is_unsupported_binary_op(const std::string &test) { |
| 13 | const static std::vector<std::string> supported_operators = { |
| 14 | "=", ">", ">=", "<", "<=", "+", "-", "AND", "OR"}; |
| 15 | return std::none_of(supported_operators.begin(), supported_operators.end(), |
| 16 | [&test](std::string op) { return op == test; }); |
| 17 | } |
| 18 | |
| 19 | |
| 20 | // Non skip data support exclusion rules: |