Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:48:19

0001 #ifndef ISL_SPACE_TYPE_H
0002 #define ISL_SPACE_TYPE_H
0003 
0004 #include <isl/ctx.h>
0005 
0006 #if defined(__cplusplus)
0007 extern "C" {
0008 #endif
0009 
0010 struct __isl_export isl_space;
0011 typedef struct isl_space isl_space;
0012 
0013 enum isl_dim_type {
0014     isl_dim_cst,
0015     isl_dim_param,
0016     isl_dim_in,
0017     isl_dim_out,
0018     isl_dim_set = isl_dim_out,
0019     isl_dim_div,
0020     isl_dim_all
0021 };
0022 
0023 #if defined(__cplusplus)
0024 }
0025 #endif
0026 
0027 #endif