| 1 | #include <isl/ctx.h> |
| 2 | #include <isl/set_type.h> |
| 3 | #include "isl_ast_graft_private.h" |
| 4 | #include "isl_set_to_ast_graft_list.h" |
| 5 | |
| 6 | #define isl_ast_graft_list_is_identical(a, b) isl_bool_ok(a == b) |
| 7 | |
| 8 | #define ISL_KEY isl_set |
| 9 | #define ISL_VAL isl_ast_graft_list |
| 10 | #define ISL_HMAP_SUFFIX set_to_ast_graft_list |
| 11 | #define ISL_HMAP isl_set_to_ast_graft_list |
| 12 | #define ISL_HMAP_IS_EQUAL isl_set_to_ast_graft_list_plain_is_equal |
| 13 | #define ISL_KEY_IS_EQUAL isl_set_plain_is_equal |
| 14 | #define ISL_VAL_IS_EQUAL isl_ast_graft_list_is_identical |
| 15 | #define ISL_KEY_PRINT isl_printer_print_set |
| 16 | #define ISL_VAL_PRINT isl_printer_print_ast_graft_list |
| 17 | #define ISL_HMAP_HAVE_READ_FROM_STR |
| 18 | #define ISL_KEY_READ isl_stream_read_set |
| 19 | #define ISL_VAL_READ isl_stream_read_ast_graft_list |
| 20 | |
| 21 | #include <isl/hmap_templ.c> |
| 22 | |