export isl_basic_map_read_from_str
authorSven Verdoolaege <skimo@kotnet.org>
Sat, 16 Jan 2010 15:16:14 +0000 (16:16 +0100)
committerSven Verdoolaege <skimo@kotnet.org>
Mon, 25 Jan 2010 16:45:12 +0000 (17:45 +0100)
doc/user.pod
include/isl_map.h

index d780e1f..d0d5909 100644 (file)
@@ -386,6 +386,8 @@ to foreign file formats.
        #include <isl_map.h>
        __isl_give isl_basic_map *isl_basic_map_read_from_file(
                isl_ctx *ctx, FILE *input, unsigned nparam);
+       __isl_give isl_basic_map *isl_basic_map_read_from_str(
+               isl_ctx *ctx, const char *str, unsigned nparam);
 
 The input may be either in C<PolyLib> format or in an
 C<Omega>-like format.
index 9d9e785..924750f 100644 (file)
@@ -183,6 +183,8 @@ struct isl_basic_map *isl_basic_map_detect_equalities(
                                                struct isl_basic_map *bmap);
 __isl_give isl_basic_map *isl_basic_map_read_from_file(isl_ctx *ctx,
                FILE *input, unsigned nparam);
+__isl_give isl_basic_map *isl_basic_map_read_from_str(isl_ctx *ctx,
+               const char *str, unsigned nparam);
 struct isl_basic_map *isl_basic_map_fix_si(struct isl_basic_map *bmap,
                enum isl_dim_type type, unsigned pos, int value);