reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
37 if (!bmap) 38 return bmap; 40 bmap = isl_basic_map_gauss(bmap, NULL); 40 bmap = isl_basic_map_gauss(bmap, NULL); 41 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY)) 42 return bmap; 43 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NO_IMPLICIT)) 44 return bmap; 45 if (bmap->n_ineq <= 1) 46 return bmap; 48 tab = isl_tab_from_basic_map(bmap, 0); 51 bmap = isl_basic_map_update_from_tab(bmap, tab); 51 bmap = isl_basic_map_update_from_tab(bmap, tab); 53 bmap = isl_basic_map_gauss(bmap, NULL); 53 bmap = isl_basic_map_gauss(bmap, NULL); 54 ISL_F_SET(bmap, ISL_BASIC_MAP_NO_IMPLICIT); 55 return bmap; 58 isl_basic_map_free(bmap);