isl_basic_set_opt: avoid invalid access on error path
[platform/upstream/isl.git] / isl_input.c
index 619ebd0..a19fe6e 100644 (file)
@@ -1,33 +1,35 @@
 /*
  * Copyright 2008-2009 Katholieke Universiteit Leuven
  * Copyright 2010      INRIA Saclay
+ * Copyright 2012      Ecole Normale Superieure
  *
- * Use of this software is governed by the GNU LGPLv2.1 license
+ * Use of this software is governed by the MIT license
  *
  * Written by Sven Verdoolaege, K.U.Leuven, Departement
  * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
  * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
  * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France 
+ * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
  */
 
 #include <ctype.h>
 #include <stdio.h>
 #include <string.h>
-#include <strings.h>
+#include <isl_ctx_private.h>
 #include <isl_map_private.h>
 #include <isl/set.h>
 #include <isl/seq.h>
-#include <isl/div.h>
-#include <isl/stream.h>
+#include <isl_stream_private.h>
 #include <isl/obj.h>
 #include "isl_polynomial_private.h"
 #include <isl/union_map.h>
 #include <isl_mat_private.h>
+#include <isl_aff_private.h>
+#include <isl/list.h>
 
 struct variable {
        char                    *name;
        int                      pos;
-       isl_vec                 *def;
        struct variable         *next;
 };
 
@@ -53,7 +55,6 @@ static void variable_free(struct variable *var)
 {
        while (var) {
                struct variable *next = var->next;
-               isl_vec_free(var->def);
                free(var->name);
                free(var);
                var = next;
@@ -80,7 +81,6 @@ static void vars_drop(struct vars *v, int n)
        var = v->v;
        while (--n >= 0) {
                struct variable *next = var->next;
-               isl_vec_free(var->def);
                free(var->name);
                free(var);
                var = next;
@@ -92,13 +92,12 @@ static struct variable *variable_new(struct vars *v, const char *name, int len,
                                int pos)
 {
        struct variable *var;
-       var = isl_alloc_type(v->ctx, struct variable);
+       var = isl_calloc_type(v->ctx, struct variable);
        if (!var)
                goto error;
        var->name = strdup(name);
        var->name[len] = '\0';
        var->pos = pos;
-       var->def = NULL;
        var->next = v->v;
        return var;
 error:
@@ -140,31 +139,40 @@ static int vars_add_anon(struct vars *v)
        return 0;
 }
 
-static __isl_give isl_basic_map *set_name(__isl_take isl_basic_map *bmap,
-       enum isl_dim_type type, unsigned pos, char *name)
+/* Obtain next token, with some preprocessing.
+ * In particular, evaluate expressions of the form x^y,
+ * with x and y values.
+ */
+static struct isl_token *next_token(struct isl_stream *s)
 {
-       char *prime;
+       struct isl_token *tok, *tok2;
 
-       if (!bmap)
-               return NULL;
-       if (!name)
-               return bmap;
+       tok = isl_stream_next_token(s);
+       if (!tok || tok->type != ISL_TOKEN_VALUE)
+               return tok;
+       if (!isl_stream_eat_if_available(s, '^'))
+               return tok;
+       tok2 = isl_stream_next_token(s);
+       if (!tok2 || tok2->type != ISL_TOKEN_VALUE) {
+               isl_stream_error(s, tok2, "expecting constant value");
+               goto error;
+       }
 
-       prime = strchr(name, '\'');
-       if (prime)
-               *prime = '\0';
-       bmap = isl_basic_map_set_dim_name(bmap, type, pos, name);
-       if (prime)
-               *prime = '\'';
+       isl_int_pow_ui(tok->u.v, tok->u.v, isl_int_get_ui(tok2->u.v));
 
-       return bmap;
+       isl_token_free(tok2);
+       return tok;
+error:
+       isl_token_free(tok);
+       isl_token_free(tok2);
+       return NULL;
 }
 
 static int accept_cst_factor(struct isl_stream *s, isl_int *f)
 {
        struct isl_token *tok;
 
-       tok = isl_stream_next_token(s);
+       tok = next_token(s);
        if (!tok || tok->type != ISL_TOKEN_VALUE) {
                isl_stream_error(s, tok, "expecting constant value");
                goto error;
@@ -190,115 +198,202 @@ error:
  * We introduce an integer division q = [aff/d] and the result
  * is set to aff - d q.
  */
-static __isl_give isl_vec *affine_mod(struct isl_stream *s,
-       struct vars *v, __isl_take isl_vec *aff)
+static __isl_give isl_pw_aff *affine_mod(struct isl_stream *s,
+       struct vars *v, __isl_take isl_pw_aff *aff)
 {
        struct isl_token *tok;
-       struct variable *var;
-       isl_vec *mod;
+       isl_pw_aff *q;
 
-       tok = isl_stream_next_token(s);
+       tok = next_token(s);
        if (!tok || tok->type != ISL_TOKEN_VALUE) {
                isl_stream_error(s, tok, "expecting constant value");
                goto error;
        }
 
-       if (vars_add_anon(v) < 0)
-               goto error;
+       q = isl_pw_aff_copy(aff);
+       q = isl_pw_aff_scale_down(q, tok->u.v);
+       q = isl_pw_aff_floor(q);
+       q = isl_pw_aff_scale(q, tok->u.v);
 
-       var = v->v;
+       aff = isl_pw_aff_sub(aff, q);
+
+       isl_token_free(tok);
+       return aff;
+error:
+       isl_pw_aff_free(aff);
+       isl_token_free(tok);
+       return NULL;
+}
 
-       var->def = isl_vec_alloc(s->ctx, 2 + v->n);
-       if (!var->def)
+static __isl_give isl_pw_aff *accept_affine(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v);
+static __isl_give isl_pw_aff_list *accept_affine_list(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v);
+
+static __isl_give isl_pw_aff *accept_minmax(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v)
+{
+       struct isl_token *tok;
+       isl_pw_aff_list *list = NULL;
+       int min;
+
+       tok = isl_stream_next_token(s);
+       if (!tok)
+               goto error;
+       min = tok->type == ISL_TOKEN_MIN;
+       isl_token_free(tok);
+
+       if (isl_stream_eat(s, '('))
                goto error;
-       isl_seq_cpy(var->def->el + 1, aff->el, aff->size);
-       isl_int_set_si(var->def->el[1 + aff->size], 0);
-       isl_int_set(var->def->el[0], tok->u.v);
 
-       mod = isl_vec_alloc(v->ctx, 1 + v->n);
-       if (!mod)
+       list = accept_affine_list(s, isl_space_copy(dim), v);
+       if (!list)
                goto error;
 
-       isl_seq_cpy(mod->el, aff->el, aff->size);
-       isl_int_neg(mod->el[aff->size], tok->u.v);
+       if (isl_stream_eat(s, ')'))
+               goto error;
 
-       isl_vec_free(aff);
-       isl_token_free(tok);
-       return mod;
+       isl_space_free(dim);
+       return min ? isl_pw_aff_list_min(list) : isl_pw_aff_list_max(list);
 error:
-       isl_vec_free(aff);
-       isl_token_free(tok);
+       isl_space_free(dim);
+       isl_pw_aff_list_free(list);
        return NULL;
 }
 
-static struct isl_vec *accept_affine(struct isl_stream *s, struct vars *v);
-static int read_div_definition(struct isl_stream *s, struct vars *v);
+static __isl_give isl_pw_aff *accept_div(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v)
+{
+       struct isl_token *tok;
+       int f = 0;
+       int c = 0;
+       isl_pw_aff *pwaff = NULL;
+
+       if (isl_stream_eat_if_available(s, ISL_TOKEN_FLOORD))
+               f = 1;
+       else if (isl_stream_eat_if_available(s, ISL_TOKEN_CEILD))
+               c = 1;
+       if (f || c) {
+               if (isl_stream_eat(s, '('))
+                       goto error;
+       } else {
+               if (isl_stream_eat(s, '['))
+                       goto error;
+       }
+
+       pwaff = accept_affine(s, isl_space_copy(dim), v);
+
+       if (f || c) {
+               if (isl_stream_eat(s, ','))
+                       goto error;
+
+               tok = next_token(s);
+               if (!tok)
+                       goto error;
+               if (tok->type != ISL_TOKEN_VALUE) {
+                       isl_stream_error(s, tok, "expected denominator");
+                       isl_stream_push_token(s, tok);
+                       goto error;
+               }
+               isl_pw_aff_scale_down(pwaff,  tok->u.v);
+               isl_token_free(tok);
+       }
+
+       if (c)
+               pwaff = isl_pw_aff_ceil(pwaff);
+       else
+               pwaff = isl_pw_aff_floor(pwaff);
+
+       if (f || c) {
+               if (isl_stream_eat(s, ')'))
+                       goto error;
+       } else {
+               if (isl_stream_eat(s, ']'))
+                       goto error;
+       }
+
+       isl_space_free(dim);
+       return pwaff;
+error:
+       isl_space_free(dim);
+       isl_pw_aff_free(pwaff);
+       return NULL;
+}
 
-static __isl_give isl_vec *accept_affine_factor(struct isl_stream *s,
-       struct vars *v)
+static __isl_give isl_pw_aff *accept_affine_factor(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v)
 {
        struct isl_token *tok = NULL;
-       isl_vec *aff = NULL;
+       isl_pw_aff *res = NULL;
 
-       tok = isl_stream_next_token(s);
+       tok = next_token(s);
        if (!tok) {
                isl_stream_error(s, NULL, "unexpected EOF");
                goto error;
        }
-       if (tok->type == ISL_TOKEN_IDENT) {
+
+       if (tok->type == ISL_TOKEN_AFF) {
+               res = isl_pw_aff_copy(tok->u.pwaff);
+               isl_token_free(tok);
+       } else if (tok->type == ISL_TOKEN_IDENT) {
                int n = v->n;
                int pos = vars_pos(v, tok->u.s, -1);
+               isl_aff *aff;
+
                if (pos < 0)
                        goto error;
                if (pos >= n) {
+                       vars_drop(v, v->n - n);
                        isl_stream_error(s, tok, "unknown identifier");
                        goto error;
                }
 
-               aff = isl_vec_alloc(v->ctx, 1 + v->n);
+               aff = isl_aff_zero_on_domain(isl_local_space_from_space(isl_space_copy(dim)));
                if (!aff)
                        goto error;
-               isl_seq_clr(aff->el, aff->size);
-               isl_int_set_si(aff->el[1 + pos], 1);
+               isl_int_set_si(aff->v->el[2 + pos], 1);
+               res = isl_pw_aff_from_aff(aff);
                isl_token_free(tok);
        } else if (tok->type == ISL_TOKEN_VALUE) {
                if (isl_stream_eat_if_available(s, '*')) {
-                       aff = accept_affine_factor(s, v);
-                       aff = isl_vec_scale(aff, tok->u.v);
+                       res = accept_affine_factor(s, isl_space_copy(dim), v);
+                       res = isl_pw_aff_scale(res, tok->u.v);
                } else {
-                       aff = isl_vec_alloc(v->ctx, 1 + v->n);
-                       if (!aff)
-                               goto error;
-                       isl_seq_clr(aff->el, aff->size);
-                       isl_int_set(aff->el[0], tok->u.v);
+                       isl_local_space *ls;
+                       isl_aff *aff;
+                       ls = isl_local_space_from_space(isl_space_copy(dim));
+                       aff = isl_aff_zero_on_domain(ls);
+                       aff = isl_aff_add_constant(aff, tok->u.v);
+                       res = isl_pw_aff_from_aff(aff);
                }
                isl_token_free(tok);
        } else if (tok->type == '(') {
                isl_token_free(tok);
                tok = NULL;
-               aff = accept_affine(s, v);
-               if (!aff)
+               res = accept_affine(s, isl_space_copy(dim), v);
+               if (!res)
                        goto error;
                if (isl_stream_eat(s, ')'))
                        goto error;
-       } else if (tok->type == '[') {
-               if (vars_add_anon(v) < 0)
-                       goto error;
-               aff = isl_vec_alloc(v->ctx, 1 + v->n);
-               if (!aff)
-                       goto error;
-               isl_seq_clr(aff->el, aff->size);
-               isl_int_set_si(aff->el[1 + v->n - 1], 1);
+       } else if (tok->type == '[' ||
+                   tok->type == ISL_TOKEN_FLOORD ||
+                   tok->type == ISL_TOKEN_CEILD) {
                isl_stream_push_token(s, tok);
                tok = NULL;
-               if (read_div_definition(s, v) < 0)
-                       goto error;
+               res = accept_div(s, isl_space_copy(dim), v);
+       } else if (tok->type == ISL_TOKEN_MIN || tok->type == ISL_TOKEN_MAX) {
+               isl_stream_push_token(s, tok);
+               tok = NULL;
+               res = accept_minmax(s, isl_space_copy(dim), v);
        } else {
                isl_stream_error(s, tok, "expecting factor");
                goto error;
        }
-       if (isl_stream_eat_if_available(s, '%'))
-               return affine_mod(s, v, aff);
+       if (isl_stream_eat_if_available(s, '%') ||
+           isl_stream_eat_if_available(s, ISL_TOKEN_MOD)) {
+               isl_space_free(dim);
+               return affine_mod(s, v, res);
+       }
        if (isl_stream_eat_if_available(s, '*')) {
                isl_int f;
                isl_int_init(f);
@@ -307,31 +402,58 @@ static __isl_give isl_vec *accept_affine_factor(struct isl_stream *s,
                        isl_int_clear(f);
                        goto error2;
                }
-               aff = isl_vec_scale(aff, f);
+               res = isl_pw_aff_scale(res, f);
+               isl_int_clear(f);
+       }
+       if (isl_stream_eat_if_available(s, '/')) {
+               isl_int f;
+               isl_int_init(f);
+               isl_int_set_si(f, 1);
+               if (accept_cst_factor(s, &f) < 0) {
+                       isl_int_clear(f);
+                       goto error2;
+               }
+               res = isl_pw_aff_scale_down(res, f);
                isl_int_clear(f);
        }
 
-       return aff;
+       isl_space_free(dim);
+       return res;
 error:
        isl_token_free(tok);
 error2:
-       isl_vec_free(aff);
+       isl_pw_aff_free(res);
+       isl_space_free(dim);
        return NULL;
 }
 
-static struct isl_vec *accept_affine(struct isl_stream *s, struct vars *v)
+static __isl_give isl_pw_aff *add_cst(__isl_take isl_pw_aff *pwaff, isl_int v)
+{
+       isl_aff *aff;
+       isl_space *space;
+
+       space = isl_pw_aff_get_domain_space(pwaff);
+       aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
+       aff = isl_aff_add_constant(aff, v);
+
+       return isl_pw_aff_add(pwaff, isl_pw_aff_from_aff(aff));
+}
+
+static __isl_give isl_pw_aff *accept_affine(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v)
 {
        struct isl_token *tok = NULL;
-       struct isl_vec *aff;
+       isl_local_space *ls;
+       isl_pw_aff *res;
        int sign = 1;
 
-       aff = isl_vec_alloc(v->ctx, 1 + v->n);
-       if (!aff)
-               return NULL;
-       isl_seq_clr(aff->el, aff->size);
+       ls = isl_local_space_from_space(isl_space_copy(dim));
+       res = isl_pw_aff_from_aff(isl_aff_zero_on_domain(ls));
+       if (!res)
+               goto error;
 
        for (;;) {
-               tok = isl_stream_next_token(s);
+               tok = next_token(s);
                if (!tok) {
                        isl_stream_error(s, NULL, "unexpected EOF");
                        goto error;
@@ -342,16 +464,20 @@ static struct isl_vec *accept_affine(struct isl_stream *s, struct vars *v)
                        continue;
                }
                if (tok->type == '(' || tok->type == '[' ||
-                   tok->type == ISL_TOKEN_IDENT) {
-                       isl_vec *aff2;
+                   tok->type == ISL_TOKEN_MIN || tok->type == ISL_TOKEN_MAX ||
+                   tok->type == ISL_TOKEN_FLOORD ||
+                   tok->type == ISL_TOKEN_CEILD ||
+                   tok->type == ISL_TOKEN_IDENT ||
+                   tok->type == ISL_TOKEN_AFF) {
+                       isl_pw_aff *term;
                        isl_stream_push_token(s, tok);
                        tok = NULL;
-                       aff2 = accept_affine_factor(s, v);
+                       term = accept_affine_factor(s, isl_space_copy(dim), v);
                        if (sign < 0)
-                               aff2 = isl_vec_scale(aff2, s->ctx->negone);
-                       aff = isl_vec_zero_extend(aff, 1 + v->n);
-                       aff = isl_vec_add(aff, aff2);
-                       if (!aff)
+                               res = isl_pw_aff_sub(res, term);
+                       else
+                               res = isl_pw_aff_add(res, term);
+                       if (!res)
                                goto error;
                        sign = 1;
                } else if (tok->type == ISL_TOKEN_VALUE) {
@@ -359,26 +485,27 @@ static struct isl_vec *accept_affine(struct isl_stream *s, struct vars *v)
                                isl_int_neg(tok->u.v, tok->u.v);
                        if (isl_stream_eat_if_available(s, '*') ||
                            isl_stream_next_token_is(s, ISL_TOKEN_IDENT)) {
-                               isl_vec *aff2;
-                               aff2 = accept_affine_factor(s, v);
-                               aff2 = isl_vec_scale(aff2, tok->u.v);
-                               aff = isl_vec_zero_extend(aff, 1 + v->n);
-                               aff = isl_vec_add(aff, aff2);
-                               if (!aff)
+                               isl_pw_aff *term;
+                               term = accept_affine_factor(s,
+                                                       isl_space_copy(dim), v);
+                               term = isl_pw_aff_scale(term, tok->u.v);
+                               res = isl_pw_aff_add(res, term);
+                               if (!res)
                                        goto error;
                        } else {
-                               isl_int_add(aff->el[0], aff->el[0], tok->u.v);
+                               res = add_cst(res, tok->u.v);
                        }
                        sign = 1;
                } else {
                        isl_stream_error(s, tok, "unexpected isl_token");
                        isl_stream_push_token(s, tok);
-                       isl_vec_free(aff);
+                       isl_pw_aff_free(res);
+                       isl_space_free(dim);
                        return NULL;
                }
                isl_token_free(tok);
 
-               tok = isl_stream_next_token(s);
+               tok = next_token(s);
                if (tok && tok->type == '-') {
                        sign = -sign;
                        isl_token_free(tok);
@@ -395,159 +522,168 @@ static struct isl_vec *accept_affine(struct isl_stream *s, struct vars *v)
                }
        }
 
-       return aff;
+       isl_space_free(dim);
+       return res;
 error:
+       isl_space_free(dim);
        isl_token_free(tok);
-       isl_vec_free(aff);
+       isl_pw_aff_free(res);
        return NULL;
 }
 
-/* Add any variables in the variable list "v" that are not already in "bmap"
- * as existentially quantified variables in "bmap".
- */
-static __isl_give isl_basic_map *add_divs(__isl_take isl_basic_map *bmap,
-       struct vars *v)
+static int is_comparator(struct isl_token *tok)
 {
-       int i;
-       int extra;
-       struct variable *var;
-
-       extra = v->n - isl_basic_map_total_dim(bmap);
-
-       if (extra == 0)
-               return bmap;
-
-       bmap = isl_basic_map_extend_dim(bmap, isl_basic_map_get_dim(bmap),
-                                       extra, 0, 2 * extra);
-
-       for (i = 0; i < extra; ++i)
-               if (isl_basic_map_alloc_div(bmap) < 0)
-                       goto error;
-
-       for (i = 0, var = v->v; i < extra; ++i, var = var->next) {
-               int k = bmap->n_div - 1 - i;
-
-               isl_seq_cpy(bmap->div[k], var->def->el, var->def->size);
-               isl_seq_clr(bmap->div[k] + var->def->size,
-                           2 + v->n - var->def->size);
+       if (!tok)
+               return 0;
 
-               if (isl_basic_map_add_div_constraints(bmap, k) < 0)
-                       goto error;
+       switch (tok->type) {
+       case ISL_TOKEN_LT:
+       case ISL_TOKEN_GT:
+       case ISL_TOKEN_LE:
+       case ISL_TOKEN_GE:
+       case ISL_TOKEN_NE:
+       case '=':
+               return 1;
+       default:
+               return 0;
        }
-
-       return bmap;
-error:
-       isl_basic_map_free(bmap);
-       return NULL;
 }
 
-static __isl_give isl_basic_map *read_var_def(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, enum isl_dim_type type, struct vars *v)
+static struct isl_map *read_disjuncts(struct isl_stream *s,
+       struct vars *v, __isl_take isl_map *map, int rational);
+static __isl_give isl_pw_aff *accept_extended_affine(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v, int rational);
+
+/* Accept a ternary operator, given the first argument.
+ */
+static __isl_give isl_pw_aff *accept_ternary(struct isl_stream *s,
+       __isl_take isl_map *cond, struct vars *v, int rational)
 {
-       isl_dim *dim;
-       isl_basic_map *def = NULL;
-       struct isl_vec *vec;
-       int k;
-       int n;
+       isl_space *dim;
+       isl_pw_aff *pwaff1 = NULL, *pwaff2 = NULL, *pa_cond;
+
+       if (!cond)
+               return NULL;
 
-       if (vars_add_anon(v) < 0)
+       if (isl_stream_eat(s, '?'))
                goto error;
-       n = v->n;
 
-       vec = accept_affine(s, v);
-       if (!vec)
+       dim = isl_space_wrap(isl_map_get_space(cond));
+       pwaff1 = accept_extended_affine(s, dim, v, rational);
+       if (!pwaff1)
                goto error;
 
-       dim = isl_basic_map_get_dim(bmap);
-       def = isl_basic_map_universe(dim);
-       def = add_divs(def, v);
-       def = isl_basic_map_extend_constraints(def, 1, 0);
-       k = isl_basic_map_alloc_equality(def);
-       if (k >= 0) {
-               isl_seq_cpy(def->eq[k], vec->el, vec->size);
-               isl_int_set_si(def->eq[k][1 + n - 1], -1);
-       }
-       isl_vec_free(vec);
-       if (k < 0)
+       if (isl_stream_eat(s, ':'))
                goto error;
 
-       vars_drop(v, v->n - n);
+       dim = isl_pw_aff_get_domain_space(pwaff1);
+       pwaff2 = accept_extended_affine(s, dim, v, rational);
+       if (!pwaff1)
+               goto error;
 
-       def = isl_basic_map_simplify(def);
-       def = isl_basic_map_finalize(def);
-       bmap = isl_basic_map_intersect(bmap, def);
-       return bmap;
+       pa_cond = isl_set_indicator_function(isl_map_wrap(cond));
+       return isl_pw_aff_cond(pa_cond, pwaff1, pwaff2);
 error:
-       isl_basic_map_free(bmap);
-       isl_basic_map_free(def);
+       isl_map_free(cond);
+       isl_pw_aff_free(pwaff1);
+       isl_pw_aff_free(pwaff2);
        return NULL;
 }
 
-static __isl_give isl_basic_map *read_var_list(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, enum isl_dim_type type, struct vars *v)
+/* Accept an affine expression that may involve ternary operators.
+ * We first read an affine expression.
+ * If it is not followed by a comparison operator, we simply return it.
+ * Otherwise, we assume the affine epxression is part of the first
+ * argument of a ternary operator and try to parse that.
+ */
+static __isl_give isl_pw_aff *accept_extended_affine(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v, int rational)
 {
-       int i = 0;
+       isl_space *space;
+       isl_map *cond;
+       isl_pw_aff *pwaff;
        struct isl_token *tok;
+       int line = -1, col = -1;
+       int is_comp;
 
-       while ((tok = isl_stream_next_token(s)) != NULL) {
-               int new_name = 0;
+       tok = isl_stream_next_token(s);
+       if (tok) {
+               line = tok->line;
+               col = tok->col;
+               isl_stream_push_token(s, tok);
+       }
 
-               if (tok->type == ISL_TOKEN_IDENT) {
-                       int n = v->n;
-                       int p = vars_pos(v, tok->u.s, -1);
-                       if (p < 0)
-                               goto error;
-                       new_name = p >= n;
-               }
+       pwaff = accept_affine(s, dim, v);
+       if (rational)
+               pwaff = isl_pw_aff_set_rational(pwaff);
+       if (!pwaff)
+               return NULL;
 
-               if (new_name) {
-                       bmap = isl_basic_map_add(bmap, type, 1);
-                       bmap = set_name(bmap, type, i, v->v->name);
-                       isl_token_free(tok);
-               } else if (tok->type == ISL_TOKEN_IDENT ||
-                          tok->type == ISL_TOKEN_VALUE ||
-                          tok->type == '-' ||
-                          tok->type == '(') {
-                       if (type == isl_dim_param) {
-                               isl_stream_error(s, tok,
-                                               "expecting unique identifier");
-                               goto error;
-                       }
-                       isl_stream_push_token(s, tok);
-                       tok = NULL;
-                       bmap = isl_basic_map_add(bmap, type, 1);
-                       bmap = read_var_def(s, bmap, type, v);
-               } else
-                       break;
+       tok = isl_stream_next_token(s);
+       if (!tok)
+               return isl_pw_aff_free(pwaff);
 
-               tok = isl_stream_next_token(s);
-               if (!tok || tok->type != ',')
-                       break;
+       is_comp = is_comparator(tok);
+       isl_stream_push_token(s, tok);
+       if (!is_comp)
+               return pwaff;
 
-               isl_token_free(tok);
-               i++;
+       tok = isl_token_new(s->ctx, line, col, 0);
+       if (!tok)
+               return isl_pw_aff_free(pwaff);
+       tok->type = ISL_TOKEN_AFF;
+       tok->u.pwaff = pwaff;
+
+       space = isl_pw_aff_get_domain_space(pwaff);
+       cond = isl_map_universe(isl_space_unwrap(space));
+
+       isl_stream_push_token(s, tok);
+
+       cond = read_disjuncts(s, v, cond, rational);
+
+       return accept_ternary(s, cond, v, rational);
+}
+
+static __isl_give isl_map *read_var_def(struct isl_stream *s,
+       __isl_take isl_map *map, enum isl_dim_type type, struct vars *v,
+       int rational)
+{
+       isl_pw_aff *def;
+       int pos;
+       isl_map *def_map;
+
+       if (type == isl_dim_param)
+               pos = isl_map_dim(map, isl_dim_param);
+       else {
+               pos = isl_map_dim(map, isl_dim_in);
+               if (type == isl_dim_out)
+                       pos += isl_map_dim(map, isl_dim_out);
+               type = isl_dim_in;
        }
-       if (tok)
-               isl_stream_push_token(s, tok);
+       --pos;
 
-       return bmap;
-error:
-       isl_token_free(tok);
-       isl_basic_map_free(bmap);
-       return NULL;
+       def = accept_extended_affine(s, isl_space_wrap(isl_map_get_space(map)),
+                                       v, rational);
+       def_map = isl_map_from_pw_aff(def);
+       def_map = isl_map_equate(def_map, type, pos, isl_dim_out, 0);
+       def_map = isl_set_unwrap(isl_map_domain(def_map));
+
+       map = isl_map_intersect(map, def_map);
+
+       return map;
 }
 
-static __isl_give isl_mat *accept_affine_list(struct isl_stream *s,
-       struct vars *v)
+static __isl_give isl_pw_aff_list *accept_affine_list(struct isl_stream *s,
+       __isl_take isl_space *dim, struct vars *v)
 {
-       struct isl_vec *vec;
-       struct isl_mat *mat;
+       isl_pw_aff *pwaff;
+       isl_pw_aff_list *list;
        struct isl_token *tok = NULL;
 
-       vec = accept_affine(s, v);
-       mat = isl_mat_from_row_vec(vec);
-       if (!mat)
-               return NULL;
+       pwaff = accept_affine(s, isl_space_copy(dim), v);
+       list = isl_pw_aff_list_from_pw_aff(pwaff);
+       if (!list)
+               goto error;
 
        for (;;) {
                tok = isl_stream_next_token(s);
@@ -561,374 +697,460 @@ static __isl_give isl_mat *accept_affine_list(struct isl_stream *s,
                }
                isl_token_free(tok);
 
-               vec = accept_affine(s, v);
-               mat = isl_mat_add_zero_cols(mat, 1 + v->n - isl_mat_cols(mat));
-               mat = isl_mat_vec_concat(mat, vec);
-               if (!mat)
-                       return NULL;
+               pwaff = accept_affine(s, isl_space_copy(dim), v);
+               list = isl_pw_aff_list_concat(list,
+                               isl_pw_aff_list_from_pw_aff(pwaff));
+               if (!list)
+                       goto error;
        }
 
-       return mat;
+       isl_space_free(dim);
+       return list;
 error:
-       isl_mat_free(mat);
+       isl_space_free(dim);
+       isl_pw_aff_list_free(list);
        return NULL;
 }
 
-static int read_div_definition(struct isl_stream *s, struct vars *v)
+static __isl_give isl_map *read_defined_var_list(struct isl_stream *s,
+       struct vars *v, __isl_take isl_map *map, int rational)
 {
        struct isl_token *tok;
-       int seen_paren = 0;
-       struct isl_vec *aff;
-       struct variable *var;
-
-       if (isl_stream_eat(s, '['))
-               return -1;
 
-       tok = isl_stream_next_token(s);
-       if (!tok)
-               return -1;
-       if (tok->type == '(') {
-               seen_paren = 1;
-               isl_token_free(tok);
-       } else
-               isl_stream_push_token(s, tok);
+       while ((tok = isl_stream_next_token(s)) != NULL) {
+               int p;
+               int n = v->n;
 
-       var = v->v;
+               if (tok->type != ISL_TOKEN_IDENT)
+                       break;
 
-       aff = accept_affine(s, v);
-       if (!aff)
-               return -1;
+               p = vars_pos(v, tok->u.s, -1);
+               if (p < 0)
+                       goto error;
+               if (p < n) {
+                       isl_stream_error(s, tok, "expecting unique identifier");
+                       goto error;
+               }
 
-       var->def = isl_vec_alloc(s->ctx, 2 + v->n);
-       if (!var->def) {
-               isl_vec_free(aff);
-               return -1;
-       }
+               map = isl_map_add_dims(map, isl_dim_out, 1);
 
-       isl_seq_cpy(var->def->el + 1, aff->el, aff->size);
+               isl_token_free(tok);
+               tok = isl_stream_next_token(s);
+               if (tok && tok->type == '=') {
+                       isl_token_free(tok);
+                       map = read_var_def(s, map, isl_dim_out, v, rational);
+                       tok = isl_stream_next_token(s);
+               }
 
-       isl_vec_free(aff);
+               if (!tok || tok->type != ',')
+                       break;
 
-       if (seen_paren && isl_stream_eat(s, ')'))
-               return -1;
-       if (isl_stream_eat(s, '/'))
-               return -1;
+               isl_token_free(tok);
+       }
+       if (tok)
+               isl_stream_push_token(s, tok);
+
+       return map;
+error:
+       isl_token_free(tok);
+       isl_map_free(map);
+       return NULL;
+}
+
+static int next_is_tuple(struct isl_stream *s)
+{
+       struct isl_token *tok;
+       int is_tuple;
 
        tok = isl_stream_next_token(s);
        if (!tok)
-               return -1;
-       if (tok->type != ISL_TOKEN_VALUE) {
-               isl_stream_error(s, tok, "expected denominator");
+               return 0;
+       if (tok->type == '[') {
                isl_stream_push_token(s, tok);
-               return -1;
+               return 1;
+       }
+       if (tok->type != ISL_TOKEN_IDENT && !tok->is_keyword) {
+               isl_stream_push_token(s, tok);
+               return 0;
        }
-       isl_int_set(var->def->el[0], tok->u.v);
-       isl_token_free(tok);
 
-       if (isl_stream_eat(s, ']'))
+       is_tuple = isl_stream_next_token_is(s, '[');
+
+       isl_stream_push_token(s, tok);
+
+       return is_tuple;
+}
+
+/* Allocate an initial tuple with zero dimensions and an anonymous,
+ * unstructured space.
+ * A tuple is represented as an isl_multi_pw_aff.
+ * The range space is the space of the tuple.
+ * The domain space is an anonymous space
+ * with a dimension for each variable in the set of variables in "v".
+ * If a given dimension is not defined in terms of earlier dimensions in
+ * the input, then the corresponding isl_pw_aff is set equal to one time
+ * the variable corresponding to the dimension being defined.
+ */
+static __isl_give isl_multi_pw_aff *tuple_alloc(struct vars *v)
+{
+       return isl_multi_pw_aff_alloc(isl_space_alloc(v->ctx, 0, v->n, 0));
+}
+
+/* Is "pa" an expression in term of earlier dimensions?
+ * The alternative is that the dimension is defined to be equal to itself,
+ * meaning that it has a universe domain and an expression that depends
+ * on itself.  "i" is the position of the expression in a sequence
+ * of "n" expressions.  The final dimensions of "pa" correspond to
+ * these "n" expressions.
+ */
+static int pw_aff_is_expr(__isl_keep isl_pw_aff *pa, int i, int n)
+{
+       isl_aff *aff;
+
+       if (!pa)
                return -1;
+       if (pa->n != 1)
+               return 1;
+       if (!isl_set_plain_is_universe(pa->p[0].set))
+               return 1;
 
+       aff = pa->p[0].aff;
+       if (isl_int_is_zero(aff->v->el[aff->v->size - n + i]))
+               return 1;
        return 0;
 }
 
-static struct isl_basic_map *add_div_definition(struct isl_stream *s,
-       struct vars *v, struct isl_basic_map *bmap, int k)
+/* Does the tuple contain any dimensions that are defined
+ * in terms of earlier dimensions?
+ */
+static int tuple_has_expr(__isl_keep isl_multi_pw_aff *tuple)
 {
-       struct variable *var = v->v;
+       int i, n;
+       int has_expr = 0;
+       isl_pw_aff *pa;
 
-       if (read_div_definition(s, v) < 0)
-               goto error;
+       if (!tuple)
+               return -1;
+       n = isl_multi_pw_aff_dim(tuple, isl_dim_out);
+       for (i = 0; i < n; ++i) {
+               pa = isl_multi_pw_aff_get_pw_aff(tuple, i);
+               has_expr = pw_aff_is_expr(pa, i, n);
+               isl_pw_aff_free(pa);
+               if (has_expr < 0 || has_expr)
+                       break;
+       }
 
-       isl_seq_cpy(bmap->div[k], var->def->el, 2 + v->n);
+       return has_expr;
+}
 
-       if (isl_basic_map_add_div_constraints(bmap, k) < 0)
-               goto error;
+/* Add a dimension to the given tuple.
+ * The dimension is initially undefined, so it is encoded
+ * as one times itself.
+ */
+static __isl_give isl_multi_pw_aff *tuple_add_dim(
+       __isl_take isl_multi_pw_aff *tuple, struct vars *v)
+{
+       isl_space *space;
+       isl_aff *aff;
+       isl_pw_aff *pa;
 
-       return bmap;
-error:
-       isl_basic_map_free(bmap);
-       return NULL;
+       tuple = isl_multi_pw_aff_add_dims(tuple, isl_dim_in, 1);
+       space = isl_multi_pw_aff_get_domain_space(tuple);
+       aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
+       aff = isl_aff_add_coefficient_si(aff, isl_dim_in, v->n, 1);
+       pa = isl_pw_aff_from_aff(aff);
+       tuple = isl_multi_pw_aff_flat_range_product(tuple,
+                                           isl_multi_pw_aff_from_pw_aff(pa));
+
+       return tuple;
 }
 
-static struct isl_basic_map *read_defined_var_list(struct isl_stream *s,
-       struct vars *v, struct isl_basic_map *bmap)
+/* Set the name of dimension "pos" in "tuple" to "name".
+ * During printing, we add primes if the same name appears more than once
+ * to distinguish the occurrences.  Here, we remove those primes from "name"
+ * before setting the name of the dimension.
+ */
+static __isl_give isl_multi_pw_aff *tuple_set_dim_name(
+       __isl_take isl_multi_pw_aff *tuple, int pos, char *name)
 {
+       char *prime;
+
+       if (!name)
+               return tuple;
+
+       prime = strchr(name, '\'');
+       if (prime)
+               *prime = '\0';
+       tuple = isl_multi_pw_aff_set_dim_name(tuple, isl_dim_set, pos, name);
+       if (prime)
+               *prime = '\'';
+
+       return tuple;
+}
+
+/* Read an affine expression from "s" and replace the definition
+ * of dimension "pos" in "tuple" by this expression.
+ *
+ * accept_extended_affine requires a wrapped space as input.
+ * The domain space of "tuple", on the other hand is an anonymous space,
+ * so we have to adjust the space of the isl_pw_aff before adding it
+ * to "tuple".
+ */
+static __isl_give isl_multi_pw_aff *read_tuple_var_def(struct isl_stream *s,
+       __isl_take isl_multi_pw_aff *tuple, int pos, struct vars *v,
+       int rational)
+{
+       isl_space *space;
+       isl_pw_aff *def;
+
+       space = isl_space_wrap(isl_space_alloc(s->ctx, 0, v->n, 0));
+       def = accept_extended_affine(s, space, v, rational);
+       space = isl_space_set_alloc(s->ctx, 0, v->n);
+       def = isl_pw_aff_reset_domain_space(def, space);
+       tuple = isl_multi_pw_aff_set_pw_aff(tuple, pos, def);
+
+       return tuple;
+}
+
+/* Read a list of variables and/or affine expressions and return the list
+ * as an isl_multi_pw_aff.
+ * The elements in the list are separated by either "," or "][".
+ * If "comma" is set then only "," is allowed.
+ */
+static __isl_give isl_multi_pw_aff *read_tuple_var_list(struct isl_stream *s,
+       struct vars *v, int rational, int comma)
+{
+       int i = 0;
        struct isl_token *tok;
+       isl_multi_pw_aff *res;
 
-       while ((tok = isl_stream_next_token(s)) != NULL) {
-               int k;
-               int p;
-               int n = v->n;
-               unsigned total = isl_basic_map_total_dim(bmap);
+       res = tuple_alloc(v);
 
-               if (tok->type != ISL_TOKEN_IDENT)
-                       break;
+       if (isl_stream_next_token_is(s, ']'))
+               return res;
 
-               p = vars_pos(v, tok->u.s, -1);
-               if (p < 0)
-                       goto error;
-               if (p < n) {
-                       isl_stream_error(s, tok, "expecting unique identifier");
-                       goto error;
-               }
+       while ((tok = next_token(s)) != NULL) {
+               int new_name = 0;
 
-               bmap = isl_basic_map_cow(bmap);
-               bmap = isl_basic_map_extend_dim(bmap, isl_dim_copy(bmap->dim),
-                                               1, 0, 2);
+               res = tuple_add_dim(res, v);
 
-               if ((k = isl_basic_map_alloc_div(bmap)) < 0)
-                       goto error;
-               isl_seq_clr(bmap->div[k], 1 + 1 + total);
+               if (tok->type == ISL_TOKEN_IDENT) {
+                       int n = v->n;
+                       int p = vars_pos(v, tok->u.s, -1);
+                       if (p < 0)
+                               goto error;
+                       new_name = p >= n;
+               }
 
-               isl_token_free(tok);
-               tok = isl_stream_next_token(s);
-               if (tok && tok->type == '=') {
+               if (new_name) {
+                       res = tuple_set_dim_name(res, i, v->v->name);
                        isl_token_free(tok);
-                       bmap = add_div_definition(s, v, bmap, k);
-                       tok = isl_stream_next_token(s);
+                       if (isl_stream_eat_if_available(s, '='))
+                               res = read_tuple_var_def(s, res, i, v,
+                                                       rational);
+               } else {
+                       isl_stream_push_token(s, tok);
+                       tok = NULL;
+                       if (vars_add_anon(v) < 0)
+                               goto error;
+                       res = read_tuple_var_def(s, res, i, v, rational);
                }
 
-               if (!tok || tok->type != ',')
+               tok = isl_stream_next_token(s);
+               if (!comma && tok && tok->type == ']' &&
+                   isl_stream_next_token_is(s, '[')) {
+                       isl_token_free(tok);
+                       tok = isl_stream_next_token(s);
+               } else if (!tok || tok->type != ',')
                        break;
 
                isl_token_free(tok);
+               i++;
        }
        if (tok)
                isl_stream_push_token(s, tok);
 
-       return bmap;
+       return res;
 error:
        isl_token_free(tok);
-       isl_basic_map_free(bmap);
-       return NULL;
+       return isl_multi_pw_aff_free(res);
 }
 
-static int next_is_tuple(struct isl_stream *s)
+/* Read a tuple and represent it as an isl_multi_pw_aff.  See tuple_alloc.
+ */
+static __isl_give isl_multi_pw_aff *read_tuple(struct isl_stream *s,
+       struct vars *v, int rational, int comma)
 {
        struct isl_token *tok;
-       int is_tuple;
+       char *name = NULL;
+       isl_multi_pw_aff *res = NULL;
 
        tok = isl_stream_next_token(s);
        if (!tok)
-               return 0;
-       if (tok->type == '[') {
-               isl_stream_push_token(s, tok);
-               return 1;
-       }
-       if (tok->type != ISL_TOKEN_IDENT && !tok->is_keyword) {
-               isl_stream_push_token(s, tok);
-               return 0;
-       }
-
-       is_tuple = isl_stream_next_token_is(s, '[');
-
-       isl_stream_push_token(s, tok);
-
-       return is_tuple;
-}
-
-static __isl_give isl_basic_map *read_tuple(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, enum isl_dim_type type, struct vars *v);
-
-static __isl_give isl_basic_map *read_nested_tuple(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, struct vars *v)
-{
-       bmap = read_tuple(s, bmap, isl_dim_in, v);
-       if (isl_stream_eat(s, ISL_TOKEN_TO))
                goto error;
-       bmap = read_tuple(s, bmap, isl_dim_out, v);
-       bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
-       return bmap;
-error:
-       isl_basic_map_free(bmap);
-       return NULL;
-}
-
-static __isl_give isl_basic_map *read_tuple(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, enum isl_dim_type type, struct vars *v)
-{
-       struct isl_token *tok;
-       char *name = NULL;
-
-       tok = isl_stream_next_token(s);
-       if (tok && (tok->type == ISL_TOKEN_IDENT || tok->is_keyword)) {
+       if (tok->type == ISL_TOKEN_IDENT || tok->is_keyword) {
                name = strdup(tok->u.s);
+               isl_token_free(tok);
                if (!name)
                        goto error;
-               isl_token_free(tok);
-               tok = isl_stream_next_token(s);
-       }
-       if (!tok || tok->type != '[') {
-               isl_stream_error(s, tok, "expecting '['");
+       } else
+               isl_stream_push_token(s, tok);
+       if (isl_stream_eat(s, '['))
                goto error;
-       }
-       isl_token_free(tok);
-       if (type != isl_dim_param && next_is_tuple(s)) {
-               isl_dim *dim = isl_basic_map_get_dim(bmap);
-               int nparam = isl_dim_size(dim, isl_dim_param);
-               int n_in = isl_dim_size(dim, isl_dim_in);
-               isl_basic_map *nested;
-               if (type == isl_dim_out)
-                       dim = isl_dim_move(dim, isl_dim_param, nparam,
-                                               isl_dim_in, 0, n_in);
-               nested = isl_basic_map_alloc_dim(dim, 0, 0, 0);
-               nested = read_nested_tuple(s, nested, v);
-               if (type == isl_dim_in) {
-                       nested = isl_basic_map_reverse(nested);
-                       bmap = isl_basic_map_intersect(nested, bmap);
-               } else {
-                       isl_basic_set *bset;
-                       dim = isl_dim_range(isl_basic_map_get_dim(nested));
-                       dim = isl_dim_drop(dim, isl_dim_param, nparam, n_in);
-                       dim = isl_dim_join(isl_basic_map_get_dim(bmap), dim);
-                       bset = isl_basic_map_domain(bmap);
-                       nested = isl_basic_map_reset_dim(nested, dim);
-                       bmap = isl_basic_map_intersect_domain(nested, bset);
-               }
+       if (next_is_tuple(s)) {
+               isl_multi_pw_aff *out;
+               int n;
+               res = read_tuple(s, v, rational, comma);
+               if (isl_stream_eat(s, ISL_TOKEN_TO))
+                       goto error;
+               out = read_tuple(s, v, rational, comma);
+               n = isl_multi_pw_aff_dim(out, isl_dim_out);
+               res = isl_multi_pw_aff_add_dims(res, isl_dim_in, n);
+               res = isl_multi_pw_aff_range_product(res, out);
        } else
-               bmap = read_var_list(s, bmap, type, v);
-       tok = isl_stream_next_token(s);
-       if (!tok || tok->type != ']') {
-               isl_stream_error(s, tok, "expecting ']'");
+               res = read_tuple_var_list(s, v, rational, comma);
+       if (isl_stream_eat(s, ']'))
                goto error;
-       }
-       isl_token_free(tok);
 
        if (name) {
-               bmap = isl_basic_map_set_tuple_name(bmap, type, name);
+               res = isl_multi_pw_aff_set_tuple_name(res, isl_dim_out, name);
                free(name);
        }
 
-       return bmap;
+       return res;
 error:
-       if (tok)
-               isl_token_free(tok);
-       isl_basic_map_free(bmap);
-       return NULL;
+       free(name);
+       return isl_multi_pw_aff_free(res);
 }
 
-static struct isl_basic_map *add_constraints(struct isl_stream *s,
-       struct vars *v, struct isl_basic_map *bmap);
-
-static struct isl_basic_map *add_exists(struct isl_stream *s,
-       struct vars *v, struct isl_basic_map *bmap)
+/* Read a tuple from "s" and add it to "map".
+ * The tuple is initially represented as an isl_multi_pw_aff.
+ * We first create the appropriate space in "map" based on the range
+ * space of this isl_multi_pw_aff.  Then, we add equalities based
+ * on the affine expressions.  These live in an anonymous space,
+ * however, so we first need to reset the space to that of "map".
+ */
+static __isl_give isl_map *read_map_tuple(struct isl_stream *s,
+       __isl_take isl_map *map, enum isl_dim_type type, struct vars *v,
+       int rational, int comma)
 {
-       struct isl_token *tok;
-       int n = v->n;
-       int extra;
-       int seen_paren = 0;
-       int i;
-       unsigned total;
+       int i, n;
+       isl_multi_pw_aff *tuple;
+       isl_space *space = NULL;
 
-       tok = isl_stream_next_token(s);
-       if (!tok)
+       tuple = read_tuple(s, v, rational, comma);
+       if (!tuple)
                goto error;
-       if (tok->type == '(') {
-               seen_paren = 1;
-               isl_token_free(tok);
-       } else
-               isl_stream_push_token(s, tok);
 
-       bmap = read_defined_var_list(s, v, bmap);
-       if (!bmap)
+       n = isl_multi_pw_aff_dim(tuple, isl_dim_out);
+       space = isl_space_range(isl_multi_pw_aff_get_space(tuple));
+       if (!space)
                goto error;
 
-       if (isl_stream_eat(s, ':'))
-               goto error;
-       bmap = add_constraints(s, v, bmap);
-       if (seen_paren && isl_stream_eat(s, ')'))
-               goto error;
-       return bmap;
-error:
-       isl_basic_map_free(bmap);
-       return NULL;
-}
+       if (type == isl_dim_param) {
+               if (isl_space_has_tuple_name(space, isl_dim_set) ||
+                   isl_space_is_wrapping(space)) {
+                       isl_die(s->ctx, isl_error_invalid,
+                               "parameter tuples cannot be named or nested",
+                               goto error);
+               }
+               map = isl_map_add_dims(map, type, n);
+               for (i = 0; i < n; ++i) {
+                       isl_id *id;
+                       if (!isl_space_has_dim_name(space, isl_dim_set, i))
+                               isl_die(s->ctx, isl_error_invalid,
+                                       "parameters must be named",
+                                       goto error);
+                       id = isl_space_get_dim_id(space, isl_dim_set, i);
+                       map = isl_map_set_dim_id(map, isl_dim_param, i, id);
+               }
+       } else if (type == isl_dim_in) {
+               isl_set *set;
+
+               set = isl_set_universe(isl_space_copy(space));
+               if (rational)
+                       set = isl_set_set_rational(set);
+               set = isl_set_intersect_params(set, isl_map_params(map));
+               map = isl_map_from_domain(set);
+       } else {
+               isl_set *set;
 
-static __isl_give isl_basic_map *construct_constraint(
-       __isl_take isl_basic_map *bmap, enum isl_token_type type,
-       isl_int *left, isl_int *right)
-{
-       int k;
-       unsigned len;
-       struct isl_ctx *ctx;
+               set = isl_set_universe(isl_space_copy(space));
+               if (rational)
+                       set = isl_set_set_rational(set);
+               map = isl_map_from_domain_and_range(isl_map_domain(map), set);
+       }
 
-       if (!bmap)
-               return NULL;
-       len = 1 + isl_basic_map_total_dim(bmap);
-       ctx = bmap->ctx;
+       for (i = 0; i < n; ++i) {
+               isl_pw_aff *pa;
+               isl_space *space;
+               isl_aff *aff;
+               isl_set *set;
+               isl_map *map_i;
 
-       k = isl_basic_map_alloc_inequality(bmap);
-       if (k < 0)
-               goto error;
-       if (type == ISL_TOKEN_LE)
-               isl_seq_combine(bmap->ineq[k], ctx->negone, left,
-                                              ctx->one, right,
-                                              len);
-       else if (type == ISL_TOKEN_GE)
-               isl_seq_combine(bmap->ineq[k], ctx->one, left,
-                                              ctx->negone, right,
-                                              len);
-       else if (type == ISL_TOKEN_LT) {
-               isl_seq_combine(bmap->ineq[k], ctx->negone, left,
-                                              ctx->one, right,
-                                              len);
-               isl_int_sub_ui(bmap->ineq[k][0], bmap->ineq[k][0], 1);
-       } else if (type == ISL_TOKEN_GT) {
-               isl_seq_combine(bmap->ineq[k], ctx->one, left,
-                                              ctx->negone, right,
-                                              len);
-               isl_int_sub_ui(bmap->ineq[k][0], bmap->ineq[k][0], 1);
-       } else {
-               isl_seq_combine(bmap->ineq[k], ctx->one, left,
-                                              ctx->negone, right,
-                                              len);
-               isl_basic_map_inequality_to_equality(bmap, k);
+               pa = isl_multi_pw_aff_get_pw_aff(tuple, i);
+               space = isl_pw_aff_get_domain_space(pa);
+               aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
+               aff = isl_aff_add_coefficient_si(aff,
+                                               isl_dim_in, v->n - n + i, -1);
+               pa = isl_pw_aff_add(pa, isl_pw_aff_from_aff(aff));
+               if (rational)
+                       pa = isl_pw_aff_set_rational(pa);
+               set = isl_pw_aff_zero_set(pa);
+               map_i = isl_map_from_range(set);
+               map_i = isl_map_reset_space(map_i, isl_map_get_space(map));
+               map = isl_map_intersect(map, map_i);
        }
 
-       return bmap;
+       isl_space_free(space);
+       isl_multi_pw_aff_free(tuple);
+       return map;
 error:
-       isl_basic_map_free(bmap);
+       isl_space_free(space);
+       isl_multi_pw_aff_free(tuple);
+       isl_map_free(map);
        return NULL;
 }
 
-static int is_comparator(struct isl_token *tok)
+static __isl_give isl_set *construct_constraints(
+       __isl_take isl_set *set, int type,
+       __isl_keep isl_pw_aff_list *left, __isl_keep isl_pw_aff_list *right,
+       int rational)
 {
-       if (!tok)
-               return 0;
+       isl_set *cond;
 
-       switch (tok->type) {
-       case ISL_TOKEN_LT:
-       case ISL_TOKEN_GT:
-       case ISL_TOKEN_LE:
-       case ISL_TOKEN_GE:
-       case '=':
-               return 1;
-       default:
-               return 0;
+       left = isl_pw_aff_list_copy(left);
+       right = isl_pw_aff_list_copy(right);
+       if (rational) {
+               left = isl_pw_aff_list_set_rational(left);
+               right = isl_pw_aff_list_set_rational(right);
        }
+       if (type == ISL_TOKEN_LE)
+               cond = isl_pw_aff_list_le_set(left, right);
+       else if (type == ISL_TOKEN_GE)
+               cond = isl_pw_aff_list_ge_set(left, right);
+       else if (type == ISL_TOKEN_LT)
+               cond = isl_pw_aff_list_lt_set(left, right);
+       else if (type == ISL_TOKEN_GT)
+               cond = isl_pw_aff_list_gt_set(left, right);
+       else if (type == ISL_TOKEN_NE)
+               cond = isl_pw_aff_list_ne_set(left, right);
+       else
+               cond = isl_pw_aff_list_eq_set(left, right);
+
+       return isl_set_intersect(set, cond);
 }
 
-static struct isl_basic_map *add_constraint(struct isl_stream *s,
-       struct vars *v, struct isl_basic_map *bmap)
+static __isl_give isl_map *add_constraint(struct isl_stream *s,
+       struct vars *v, __isl_take isl_map *map, int rational)
 {
-       int i, j;
        struct isl_token *tok = NULL;
-       struct isl_mat *aff1 = NULL, *aff2 = NULL;
-
-       tok = isl_stream_next_token(s);
-       if (!tok)
-               goto error;
-       if (tok->type == ISL_TOKEN_EXISTS) {
-               isl_token_free(tok);
-               return add_exists(s, v, bmap);
-       }
-       isl_stream_push_token(s, tok);
-       tok = NULL;
-
-       bmap = isl_basic_map_cow(bmap);
+       isl_pw_aff_list *list1 = NULL, *list2 = NULL;
+       isl_set *set;
 
-       aff1 = accept_affine_list(s, v);
-       if (!aff1)
+       set = isl_map_wrap(map);
+       list1 = accept_affine_list(s, isl_set_get_space(set), v);
+       if (!list1)
                goto error;
        tok = isl_stream_next_token(s);
        if (!is_comparator(tok)) {
@@ -939,23 +1161,15 @@ static struct isl_basic_map *add_constraint(struct isl_stream *s,
                goto error;
        }
        for (;;) {
-               aff2 = accept_affine_list(s, v);
-               if (!aff2)
+               list2 = accept_affine_list(s, isl_set_get_space(set), v);
+               if (!list2)
                        goto error;
 
-               aff1 = isl_mat_add_zero_cols(aff1, aff2->n_col - aff1->n_col);
-               if (!aff1)
-                       goto error;
-               bmap = add_divs(bmap, v);
-               bmap = isl_basic_map_extend_constraints(bmap, 0,
-                                               aff1->n_row * aff2->n_row);
-               for (i = 0; i < aff1->n_row; ++i)
-                       for (j = 0; j < aff2->n_row; ++j)
-                               bmap = construct_constraint(bmap, tok->type,
-                                                   aff1->row[i], aff2->row[j]);
+               set = construct_constraints(set, tok->type, list1, list2,
+                                               rational);
                isl_token_free(tok);
-               isl_mat_free(aff1);
-               aff1 = aff2;
+               isl_pw_aff_list_free(list1);
+               list1 = list2;
 
                tok = isl_stream_next_token(s);
                if (!is_comparator(tok)) {
@@ -964,124 +1178,213 @@ static struct isl_basic_map *add_constraint(struct isl_stream *s,
                        break;
                }
        }
-       isl_mat_free(aff1);
+       isl_pw_aff_list_free(list1);
 
-       return bmap;
+       return isl_set_unwrap(set);
 error:
        if (tok)
                isl_token_free(tok);
-       isl_mat_free(aff1);
-       isl_mat_free(aff2);
-       isl_basic_map_free(bmap);
+       isl_pw_aff_list_free(list1);
+       isl_pw_aff_list_free(list2);
+       isl_set_free(set);
        return NULL;
 }
 
-static struct isl_basic_map *add_constraints(struct isl_stream *s,
-       struct vars *v, struct isl_basic_map *bmap)
+static __isl_give isl_map *read_exists(struct isl_stream *s,
+       struct vars *v, __isl_take isl_map *map, int rational)
 {
-       struct isl_token *tok;
+       int n = v->n;
+       int seen_paren = isl_stream_eat_if_available(s, '(');
 
-       for (;;) {
-               bmap = add_constraint(s, v, bmap);
-               if (!bmap)
-                       return NULL;
-               tok = isl_stream_next_token(s);
-               if (!tok) {
-                       isl_stream_error(s, NULL, "unexpected EOF");
-                       goto error;
-               }
-               if (tok->type != ISL_TOKEN_AND)
-                       break;
-               isl_token_free(tok);
-       }
-       isl_stream_push_token(s, tok);
+       map = isl_map_from_domain(isl_map_wrap(map));
+       map = read_defined_var_list(s, v, map, rational);
 
-       return bmap;
+       if (isl_stream_eat(s, ':'))
+               goto error;
+
+       map = read_disjuncts(s, v, map, rational);
+       map = isl_set_unwrap(isl_map_domain(map));
+
+       vars_drop(v, v->n - n);
+       if (seen_paren && isl_stream_eat(s, ')'))
+               goto error;
+
+       return map;
 error:
-       if (tok)
-               isl_token_free(tok);
-       isl_basic_map_free(bmap);
+       isl_map_free(map);
        return NULL;
 }
 
-static isl_map *read_constraint(struct isl_stream *s,
-       struct vars *v, __isl_take isl_dim *dim)
+/* Parse an expression between parentheses and push the result
+ * back on the stream.
+ *
+ * The parsed expression may be either an affine expression
+ * or a condition.  The first type is pushed onto the stream
+ * as an isl_pw_aff, while the second is pushed as an isl_map.
+ *
+ * If the initial token indicates the start of a condition,
+ * we parse it as such.
+ * Otherwise, we first parse an affine expression and push
+ * that onto the stream.  If the affine expression covers the
+ * entire expression between parentheses, we return.
+ * Otherwise, we assume that the affine expression is the
+ * start of a condition and continue parsing.
+ */
+static int resolve_paren_expr(struct isl_stream *s,
+       struct vars *v, __isl_take isl_map *map, int rational)
 {
-       struct isl_basic_map *bmap;
-       int n = v->n;
+       struct isl_token *tok, *tok2;
+       int line, col;
+       isl_pw_aff *pwaff;
 
-       bmap = isl_basic_map_alloc_dim(dim, 0, 0, 0);
-       if (!bmap)
-               return NULL;
+       tok = isl_stream_next_token(s);
+       if (!tok || tok->type != '(')
+               goto error;
 
-       bmap = add_constraint(s, v, bmap);
-       bmap = isl_basic_map_simplify(bmap);
-       bmap = isl_basic_map_finalize(bmap);
+       if (isl_stream_next_token_is(s, '('))
+               if (resolve_paren_expr(s, v, isl_map_copy(map), rational))
+                       goto error;
 
-       vars_drop(v, v->n - n);
+       if (isl_stream_next_token_is(s, ISL_TOKEN_EXISTS) ||
+           isl_stream_next_token_is(s, ISL_TOKEN_NOT) ||
+           isl_stream_next_token_is(s, ISL_TOKEN_TRUE) ||
+           isl_stream_next_token_is(s, ISL_TOKEN_FALSE) ||
+           isl_stream_next_token_is(s, ISL_TOKEN_MAP)) {
+               map = read_disjuncts(s, v, map, rational);
+               if (isl_stream_eat(s, ')'))
+                       goto error;
+               tok->type = ISL_TOKEN_MAP;
+               tok->u.map = map;
+               isl_stream_push_token(s, tok);
+               return 0;
+       }
+
+       tok2 = isl_stream_next_token(s);
+       if (!tok2)
+               goto error;
+       line = tok2->line;
+       col = tok2->col;
+       isl_stream_push_token(s, tok2);
+
+       pwaff = accept_affine(s, isl_space_wrap(isl_map_get_space(map)), v);
+       if (!pwaff)
+               goto error;
+
+       tok2 = isl_token_new(s->ctx, line, col, 0);
+       if (!tok2)
+               goto error2;
+       tok2->type = ISL_TOKEN_AFF;
+       tok2->u.pwaff = pwaff;
+
+       if (isl_stream_eat_if_available(s, ')')) {
+               isl_stream_push_token(s, tok2);
+               isl_token_free(tok);
+               isl_map_free(map);
+               return 0;
+       }
+
+       isl_stream_push_token(s, tok2);
+
+       map = read_disjuncts(s, v, map, rational);
+       if (isl_stream_eat(s, ')'))
+               goto error;
 
-       return isl_map_from_basic_map(bmap);
+       tok->type = ISL_TOKEN_MAP;
+       tok->u.map = map;
+       isl_stream_push_token(s, tok);
+
+       return 0;
+error2:
+       isl_pw_aff_free(pwaff);
 error:
-       isl_basic_map_free(bmap);
-       return NULL;
+       isl_token_free(tok);
+       isl_map_free(map);
+       return -1;
 }
 
-static struct isl_map *read_disjuncts(struct isl_stream *s,
-       struct vars *v, __isl_take isl_dim *dim);
-
 static __isl_give isl_map *read_conjunct(struct isl_stream *s,
-       struct vars *v, __isl_take isl_dim *dim)
+       struct vars *v, __isl_take isl_map *map, int rational)
 {
-       isl_map *map;
+       if (isl_stream_next_token_is(s, '('))
+               if (resolve_paren_expr(s, v, isl_map_copy(map), rational))
+                       goto error;
 
-       if (isl_stream_eat_if_available(s, '(')) {
-               map = read_disjuncts(s, v, dim);
-               if (isl_stream_eat(s, ')'))
+       if (isl_stream_next_token_is(s, ISL_TOKEN_MAP)) {
+               struct isl_token *tok;
+               tok = isl_stream_next_token(s);
+               if (!tok)
                        goto error;
+               isl_map_free(map);
+               map = isl_map_copy(tok->u.map);
+               isl_token_free(tok);
                return map;
        }
+
+       if (isl_stream_eat_if_available(s, ISL_TOKEN_EXISTS))
+               return read_exists(s, v, map, rational);
+
+       if (isl_stream_eat_if_available(s, ISL_TOKEN_TRUE))
+               return map;
+
+       if (isl_stream_eat_if_available(s, ISL_TOKEN_FALSE)) {
+               isl_space *dim = isl_map_get_space(map);
+               isl_map_free(map);
+               return isl_map_empty(dim);
+       }
                
-       return read_constraint(s, v, dim);
+       return add_constraint(s, v, map, rational);
 error:
        isl_map_free(map);
        return NULL;
 }
 
 static __isl_give isl_map *read_conjuncts(struct isl_stream *s,
-       struct vars *v, __isl_take isl_dim *dim)
+       struct vars *v, __isl_take isl_map *map, int rational)
 {
-       isl_map *map;
+       isl_map *res;
+       int negate;
+
+       negate = isl_stream_eat_if_available(s, ISL_TOKEN_NOT);
+       res = read_conjunct(s, v, isl_map_copy(map), rational);
+       if (negate)
+               res = isl_map_subtract(isl_map_copy(map), res);
 
-       map = read_conjunct(s, v, isl_dim_copy(dim));
        while (isl_stream_eat_if_available(s, ISL_TOKEN_AND)) {
-               isl_map *map_i;
+               isl_map *res_i;
 
-               map_i = read_conjunct(s, v, isl_dim_copy(dim));
-               map = isl_map_intersect(map, map_i);
+               negate = isl_stream_eat_if_available(s, ISL_TOKEN_NOT);
+               res_i = read_conjunct(s, v, isl_map_copy(map), rational);
+               if (negate)
+                       res = isl_map_subtract(res, res_i);
+               else
+                       res = isl_map_intersect(res, res_i);
        }
 
-       isl_dim_free(dim);
-       return map;
+       isl_map_free(map);
+       return res;
 }
 
 static struct isl_map *read_disjuncts(struct isl_stream *s,
-       struct vars *v, __isl_take isl_dim *dim)
+       struct vars *v, __isl_take isl_map *map, int rational)
 {
-       struct isl_map *map;
+       isl_map *res;
 
-       if (isl_stream_next_token_is(s, '}'))
+       if (isl_stream_next_token_is(s, '}')) {
+               isl_space *dim = isl_map_get_space(map);
+               isl_map_free(map);
                return isl_map_universe(dim);
+       }
 
-       map = read_conjuncts(s, v, isl_dim_copy(dim));
+       res = read_conjuncts(s, v, isl_map_copy(map), rational);
        while (isl_stream_eat_if_available(s, ISL_TOKEN_OR)) {
-               isl_map *map_i;
+               isl_map *res_i;
 
-               map_i = read_conjuncts(s, v, isl_dim_copy(dim));
-               map = isl_map_union(map, map_i);
+               res_i = read_conjuncts(s, v, isl_map_copy(map), rational);
+               res = isl_map_union(res, res_i);
        }
 
-       isl_dim_free(dim);
-       return map;
+       isl_map_free(map);
+       return res;
 }
 
 static int polylib_pos_to_isl_pos(__isl_keep isl_basic_map *bmap, int pos)
@@ -1177,8 +1480,7 @@ error:
        return NULL;
 }
 
-static __isl_give isl_basic_map *basic_map_read_polylib(struct isl_stream *s,
-       int nparam)
+static __isl_give isl_basic_map *basic_map_read_polylib(struct isl_stream *s)
 {
        int i;
        struct isl_token *tok;
@@ -1187,9 +1489,7 @@ static __isl_give isl_basic_map *basic_map_read_polylib(struct isl_stream *s,
        int on_new_line;
        unsigned in = 0, out, local = 0;
        struct isl_basic_map *bmap = NULL;
-
-       if (nparam < 0)
-               nparam = 0;
+       int nparam = 0;
 
        tok = isl_stream_next_token(s);
        if (!tok) {
@@ -1296,7 +1596,7 @@ error:
        return NULL;
 }
 
-static struct isl_map *map_read_polylib(struct isl_stream *s, int nparam)
+static struct isl_map *map_read_polylib(struct isl_stream *s)
 {
        struct isl_token *tok;
        struct isl_token *tok2;
@@ -1312,7 +1612,7 @@ static struct isl_map *map_read_polylib(struct isl_stream *s, int nparam)
        if (tok2 && tok2->type == ISL_TOKEN_VALUE) {
                isl_stream_push_token(s, tok2);
                isl_stream_push_token(s, tok);
-               return isl_map_from_basic_map(basic_map_read_polylib(s, nparam));
+               return isl_map_from_basic_map(basic_map_read_polylib(s));
        }
        if (tok2) {
                isl_stream_error(s, tok2, "unexpected token");
@@ -1325,11 +1625,11 @@ static struct isl_map *map_read_polylib(struct isl_stream *s, int nparam)
 
        isl_assert(s->ctx, n >= 1, return NULL);
 
-       map = isl_map_from_basic_map(basic_map_read_polylib(s, nparam));
+       map = isl_map_from_basic_map(basic_map_read_polylib(s));
 
        for (i = 1; map && i < n; ++i)
                map = isl_map_union(map,
-                       isl_map_from_basic_map(basic_map_read_polylib(s, nparam)));
+                       isl_map_from_basic_map(basic_map_read_polylib(s)));
 
        return map;
 }
@@ -1359,41 +1659,16 @@ static int optional_power(struct isl_stream *s)
        return pow;
 }
 
-static __isl_give isl_div *read_div(struct isl_stream *s,
-       __isl_take isl_dim *dim, struct vars *v)
-{
-       int n;
-       isl_basic_map *bmap;
-
-       n = v->n;
-       bmap = isl_basic_map_universe(dim);
-
-       if (vars_add_anon(v) < 0)
-               goto error;
-       if (read_div_definition(s, v) < 0)
-               goto error;
-       bmap = add_divs(bmap, v);
-       bmap = isl_basic_map_order_divs(bmap);
-       if (!bmap)
-               goto error;
-       vars_drop(v, v->n - n);
-
-       return isl_basic_map_div(bmap, bmap->n_div - 1);
-error:
-       isl_basic_map_free(bmap);
-       return NULL;
-}
-
-static __isl_give isl_qpolynomial *read_term(struct isl_stream *s,
-       __isl_keep isl_basic_map *bmap, struct vars *v);
+static __isl_give isl_pw_qpolynomial *read_term(struct isl_stream *s,
+       __isl_keep isl_map *map, struct vars *v);
 
-static __isl_give isl_qpolynomial *read_factor(struct isl_stream *s,
-       __isl_keep isl_basic_map *bmap, struct vars *v)
+static __isl_give isl_pw_qpolynomial *read_factor(struct isl_stream *s,
+       __isl_keep isl_map *map, struct vars *v)
 {
-       struct isl_qpolynomial *qp;
+       isl_pw_qpolynomial *pwqp;
        struct isl_token *tok;
 
-       tok = isl_stream_next_token(s);
+       tok = next_token(s);
        if (!tok) {
                isl_stream_error(s, NULL, "unexpected EOF");
                return NULL;
@@ -1402,44 +1677,51 @@ static __isl_give isl_qpolynomial *read_factor(struct isl_stream *s,
                int pow;
 
                isl_token_free(tok);
-               qp = read_term(s, bmap, v);
-               if (!qp)
+               pwqp = read_term(s, map, v);
+               if (!pwqp)
                        return NULL;
                if (isl_stream_eat(s, ')'))
                        goto error;
                pow = optional_power(s);
-               qp = isl_qpolynomial_pow(qp, pow);
+               pwqp = isl_pw_qpolynomial_pow(pwqp, pow);
        } else if (tok->type == ISL_TOKEN_VALUE) {
                struct isl_token *tok2;
                tok2 = isl_stream_next_token(s);
+               isl_qpolynomial *qp;
                if (tok2 && tok2->type == '/') {
                        isl_token_free(tok2);
-                       tok2 = isl_stream_next_token(s);
+                       tok2 = next_token(s);
                        if (!tok2 || tok2->type != ISL_TOKEN_VALUE) {
                                isl_stream_error(s, tok2, "expected denominator");
                                isl_token_free(tok);
                                isl_token_free(tok2);
                                return NULL;
                        }
-                       qp = isl_qpolynomial_rat_cst(isl_basic_map_get_dim(bmap),
+                       qp = isl_qpolynomial_rat_cst_on_domain(isl_map_get_space(map),
                                                    tok->u.v, tok2->u.v);
                        isl_token_free(tok2);
                } else {
                        isl_stream_push_token(s, tok2);
-                       qp = isl_qpolynomial_cst(isl_basic_map_get_dim(bmap),
+                       qp = isl_qpolynomial_cst_on_domain(isl_map_get_space(map),
                                                tok->u.v);
                }
                isl_token_free(tok);
+               pwqp = isl_pw_qpolynomial_from_qpolynomial(qp);
        } else if (tok->type == ISL_TOKEN_INFTY) {
+               isl_qpolynomial *qp;
                isl_token_free(tok);
-               qp = isl_qpolynomial_infty(isl_basic_map_get_dim(bmap));
+               qp = isl_qpolynomial_infty_on_domain(isl_map_get_space(map));
+               pwqp = isl_pw_qpolynomial_from_qpolynomial(qp);
        } else if (tok->type == ISL_TOKEN_NAN) {
+               isl_qpolynomial *qp;
                isl_token_free(tok);
-               qp = isl_qpolynomial_nan(isl_basic_map_get_dim(bmap));
+               qp = isl_qpolynomial_nan_on_domain(isl_map_get_space(map));
+               pwqp = isl_pw_qpolynomial_from_qpolynomial(qp);
        } else if (tok->type == ISL_TOKEN_IDENT) {
                int n = v->n;
                int pos = vars_pos(v, tok->u.s, -1);
                int pow;
+               isl_qpolynomial *qp;
                if (pos < 0) {
                        isl_token_free(tok);
                        return NULL;
@@ -1452,23 +1734,21 @@ static __isl_give isl_qpolynomial *read_factor(struct isl_stream *s,
                }
                isl_token_free(tok);
                pow = optional_power(s);
-               qp = isl_qpolynomial_var_pow(isl_basic_map_get_dim(bmap), pos, pow);
+               qp = isl_qpolynomial_var_pow_on_domain(isl_map_get_space(map), pos, pow);
+               pwqp = isl_pw_qpolynomial_from_qpolynomial(qp);
        } else if (tok->type == '[') {
-               isl_div *div;
+               isl_pw_aff *pwaff;
                int pow;
 
                isl_stream_push_token(s, tok);
-               div = read_div(s, isl_basic_map_get_dim(bmap), v);
+               pwaff = accept_div(s, isl_map_get_space(map), v);
                pow = optional_power(s);
-               qp = isl_qpolynomial_div_pow(div, pow);
+               pwqp = isl_pw_qpolynomial_from_pw_aff(pwaff);
+               pwqp = isl_pw_qpolynomial_pow(pwqp, pow);
        } else if (tok->type == '-') {
-               struct isl_qpolynomial *qp2;
-
                isl_token_free(tok);
-               qp = isl_qpolynomial_cst(isl_basic_map_get_dim(bmap),
-                                           s->ctx->negone);
-               qp2 = read_factor(s, bmap, v);
-               qp = isl_qpolynomial_mul(qp, qp2);
+               pwqp = read_factor(s, map, v);
+               pwqp = isl_pw_qpolynomial_neg(pwqp);
        } else {
                isl_stream_error(s, tok, "unexpected isl_token");
                isl_stream_push_token(s, tok);
@@ -1477,100 +1757,94 @@ static __isl_give isl_qpolynomial *read_factor(struct isl_stream *s,
 
        if (isl_stream_eat_if_available(s, '*') ||
            isl_stream_next_token_is(s, ISL_TOKEN_IDENT)) {
-               struct isl_qpolynomial *qp2;
+               isl_pw_qpolynomial *pwqp2;
 
-               qp2 = read_factor(s, bmap, v);
-               qp = isl_qpolynomial_mul(qp, qp2);
+               pwqp2 = read_factor(s, map, v);
+               pwqp = isl_pw_qpolynomial_mul(pwqp, pwqp2);
        }
 
-       return qp;
+       return pwqp;
 error:
-       isl_qpolynomial_free(qp);
+       isl_pw_qpolynomial_free(pwqp);
        return NULL;
 }
 
-static __isl_give isl_qpolynomial *read_term(struct isl_stream *s,
-       __isl_keep isl_basic_map *bmap, struct vars *v)
+static __isl_give isl_pw_qpolynomial *read_term(struct isl_stream *s,
+       __isl_keep isl_map *map, struct vars *v)
 {
        struct isl_token *tok;
-       struct isl_qpolynomial *qp;
+       isl_pw_qpolynomial *pwqp;
 
-       qp = read_factor(s, bmap, v);
+       pwqp = read_factor(s, map, v);
 
        for (;;) {
-               tok = isl_stream_next_token(s);
+               tok = next_token(s);
                if (!tok)
-                       return qp;
+                       return pwqp;
 
                if (tok->type == '+') {
-                       struct isl_qpolynomial *qp2;
+                       isl_pw_qpolynomial *pwqp2;
 
                        isl_token_free(tok);
-                       qp2 = read_factor(s, bmap, v);
-                       qp = isl_qpolynomial_add(qp, qp2);
+                       pwqp2 = read_factor(s, map, v);
+                       pwqp = isl_pw_qpolynomial_add(pwqp, pwqp2);
                } else if (tok->type == '-') {
-                       struct isl_qpolynomial *qp2;
+                       isl_pw_qpolynomial *pwqp2;
 
                        isl_token_free(tok);
-                       qp2 = read_factor(s, bmap, v);
-                       qp = isl_qpolynomial_sub(qp, qp2);
+                       pwqp2 = read_factor(s, map, v);
+                       pwqp = isl_pw_qpolynomial_sub(pwqp, pwqp2);
                } else if (tok->type == ISL_TOKEN_VALUE &&
                            isl_int_is_neg(tok->u.v)) {
-                       struct isl_qpolynomial *qp2;
+                       isl_pw_qpolynomial *pwqp2;
 
                        isl_stream_push_token(s, tok);
-                       qp2 = read_factor(s, bmap, v);
-                       qp = isl_qpolynomial_add(qp, qp2);
+                       pwqp2 = read_factor(s, map, v);
+                       pwqp = isl_pw_qpolynomial_add(pwqp, pwqp2);
                } else {
                        isl_stream_push_token(s, tok);
                        break;
                }
        }
 
-       return qp;
+       return pwqp;
 }
 
 static __isl_give isl_map *read_optional_disjuncts(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, struct vars *v)
+       __isl_take isl_map *map, struct vars *v, int rational)
 {
        struct isl_token *tok;
-       struct isl_map *map;
 
        tok = isl_stream_next_token(s);
        if (!tok) {
                isl_stream_error(s, NULL, "unexpected EOF");
                goto error;
        }
-       map = isl_map_from_basic_map(isl_basic_map_copy(bmap));
-       if (tok->type == ':') {
+       if (tok->type == ':' ||
+           (tok->type == ISL_TOKEN_OR && !strcmp(tok->u.s, "|"))) {
                isl_token_free(tok);
-               map = isl_map_intersect(map,
-                           read_disjuncts(s, v, isl_basic_map_get_dim(bmap)));
+               map = read_disjuncts(s, v, map, rational);
        } else
                isl_stream_push_token(s, tok);
 
-       isl_basic_map_free(bmap);
-
        return map;
 error:
-       isl_basic_map_free(bmap);
+       isl_map_free(map);
        return NULL;
 }
 
 static struct isl_obj obj_read_poly(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, struct vars *v, int n)
+       __isl_take isl_map *map, struct vars *v, int n)
 {
        struct isl_obj obj = { isl_obj_pw_qpolynomial, NULL };
-       struct isl_pw_qpolynomial *pwqp;
-       struct isl_qpolynomial *qp;
-       struct isl_map *map;
+       isl_pw_qpolynomial *pwqp;
        struct isl_set *set;
 
-       qp = read_term(s, bmap, v);
-       map = read_optional_disjuncts(s, bmap, v);
+       pwqp = read_term(s, map, v);
+       map = read_optional_disjuncts(s, map, v, 0);
        set = isl_map_range(map);
 
-       pwqp = isl_pw_qpolynomial_alloc(set, qp);
+       pwqp = isl_pw_qpolynomial_intersect_domain(pwqp, set);
 
        vars_drop(v, v->n - n);
 
@@ -1579,89 +1853,114 @@ static struct isl_obj obj_read_poly(struct isl_stream *s,
 }
 
 static struct isl_obj obj_read_poly_or_fold(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, struct vars *v, int n)
+       __isl_take isl_set *set, struct vars *v, int n)
 {
        struct isl_obj obj = { isl_obj_pw_qpolynomial_fold, NULL };
-       struct isl_obj obj_p;
-       isl_qpolynomial *qp;
-       isl_qpolynomial_fold *fold = NULL;
-       isl_pw_qpolynomial_fold *pwf;
-       isl_map *map;
-       isl_set *set;
+       isl_pw_qpolynomial *pwqp;
+       isl_pw_qpolynomial_fold *pwf = NULL;
 
        if (!isl_stream_eat_if_available(s, ISL_TOKEN_MAX))
-               return obj_read_poly(s, bmap, v, n);
+               return obj_read_poly(s, set, v, n);
 
        if (isl_stream_eat(s, '('))
                goto error;
 
-       qp = read_term(s, bmap, v);
-       fold = isl_qpolynomial_fold_alloc(isl_fold_max, qp);
+       pwqp = read_term(s, set, v);
+       pwf = isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max, pwqp);
 
        while (isl_stream_eat_if_available(s, ',')) {
-               isl_qpolynomial_fold *fold_i;
-               qp = read_term(s, bmap, v);
-               fold_i = isl_qpolynomial_fold_alloc(isl_fold_max, qp);
-               fold = isl_qpolynomial_fold_fold(fold, fold_i);
+               isl_pw_qpolynomial_fold *pwf_i;
+               pwqp = read_term(s, set, v);
+               pwf_i = isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max,
+                                                                       pwqp);
+               pwf = isl_pw_qpolynomial_fold_fold(pwf, pwf_i);
        }
 
        if (isl_stream_eat(s, ')'))
                goto error;
 
-       map = read_optional_disjuncts(s, bmap, v);
-       set = isl_map_range(map);
-       pwf = isl_pw_qpolynomial_fold_alloc(isl_fold_max, set, fold);
+       set = read_optional_disjuncts(s, set, v, 0);
+       pwf = isl_pw_qpolynomial_fold_intersect_domain(pwf, set);
 
        vars_drop(v, v->n - n);
 
        obj.v = pwf;
        return obj;
 error:
-       isl_basic_map_free(bmap);
-       isl_qpolynomial_fold_free(fold);
+       isl_set_free(set);
+       isl_pw_qpolynomial_fold_free(pwf);
        obj.type = isl_obj_none;
        return obj;
 }
 
+static int is_rational(struct isl_stream *s)
+{
+       struct isl_token *tok;
+
+       tok = isl_stream_next_token(s);
+       if (!tok)
+               return 0;
+       if (tok->type == ISL_TOKEN_RAT && isl_stream_next_token_is(s, ':')) {
+               isl_token_free(tok);
+               isl_stream_eat(s, ':');
+               return 1;
+       }
+
+       isl_stream_push_token(s, tok);
+
+       return 0;
+}
+
 static struct isl_obj obj_read_body(struct isl_stream *s,
-       __isl_take isl_basic_map *bmap, struct vars *v)
+       __isl_take isl_map *map, struct vars *v)
 {
-       struct isl_map *map = NULL;
        struct isl_token *tok;
        struct isl_obj obj = { isl_obj_set, NULL };
        int n = v->n;
+       int rational;
+
+       rational = is_rational(s);
+       if (rational)
+               map = isl_map_set_rational(map);
+
+       if (isl_stream_next_token_is(s, ':')) {
+               obj.type = isl_obj_set;
+               obj.v = read_optional_disjuncts(s, map, v, rational);
+               return obj;
+       }
 
        if (!next_is_tuple(s))
-               return obj_read_poly_or_fold(s, bmap, v, n);
+               return obj_read_poly_or_fold(s, map, v, n);
 
-       bmap = read_tuple(s, bmap, isl_dim_in, v);
-       if (!bmap)
+       map = read_map_tuple(s, map, isl_dim_in, v, rational, 0);
+       if (!map)
                goto error;
        tok = isl_stream_next_token(s);
-       if (tok && tok->type == ISL_TOKEN_TO) {
+       if (!tok)
+               goto error;
+       if (tok->type == ISL_TOKEN_TO) {
                obj.type = isl_obj_map;
                isl_token_free(tok);
                if (!next_is_tuple(s)) {
-                       bmap = isl_basic_map_reverse(bmap);
-                       return obj_read_poly_or_fold(s, bmap, v, n);
+                       isl_set *set = isl_map_domain(map);
+                       return obj_read_poly_or_fold(s, set, v, n);
                }
-               bmap = read_tuple(s, bmap, isl_dim_out, v);
-               if (!bmap)
+               map = read_map_tuple(s, map, isl_dim_out, v, rational, 0);
+               if (!map)
                        goto error;
        } else {
-               bmap = isl_basic_map_reverse(bmap);
-               if (tok)
-                       isl_stream_push_token(s, tok);
+               map = isl_map_domain(map);
+               isl_stream_push_token(s, tok);
        }
 
-       map = read_optional_disjuncts(s, bmap, v);
+       map = read_optional_disjuncts(s, map, v, rational);
 
        vars_drop(v, v->n - n);
 
        obj.v = map;
        return obj;
 error:
-       isl_basic_map_free(bmap);
+       isl_map_free(map);
        obj.type = isl_obj_none;
        return obj;
 }
@@ -1713,21 +2012,21 @@ static struct isl_obj obj_add(struct isl_ctx *ctx,
            obj2.type == isl_obj_pw_qpolynomial_fold)
                obj2 = to_union(ctx, obj2);
        isl_assert(ctx, obj1.type == obj2.type, goto error);
-       if (obj1.type == isl_obj_map && !isl_map_has_equal_dim(obj1.v, obj2.v)) {
+       if (obj1.type == isl_obj_map && !isl_map_has_equal_space(obj1.v, obj2.v)) {
                obj1 = to_union(ctx, obj1);
                obj2 = to_union(ctx, obj2);
        }
-       if (obj1.type == isl_obj_set && !isl_set_has_equal_dim(obj1.v, obj2.v)) {
+       if (obj1.type == isl_obj_set && !isl_set_has_equal_space(obj1.v, obj2.v)) {
                obj1 = to_union(ctx, obj1);
                obj2 = to_union(ctx, obj2);
        }
        if (obj1.type == isl_obj_pw_qpolynomial &&
-           !isl_pw_qpolynomial_has_equal_dim(obj1.v, obj2.v)) {
+           !isl_pw_qpolynomial_has_equal_space(obj1.v, obj2.v)) {
                obj1 = to_union(ctx, obj1);
                obj2 = to_union(ctx, obj2);
        }
        if (obj1.type == isl_obj_pw_qpolynomial_fold &&
-           !isl_pw_qpolynomial_fold_has_equal_dim(obj1.v, obj2.v)) {
+           !isl_pw_qpolynomial_fold_has_equal_space(obj1.v, obj2.v)) {
                obj1 = to_union(ctx, obj1);
                obj2 = to_union(ctx, obj2);
        }
@@ -1741,14 +2040,14 @@ error:
        return obj1;
 }
 
-static struct isl_obj obj_read(struct isl_stream *s, int nparam)
+static struct isl_obj obj_read(struct isl_stream *s)
 {
-       isl_basic_map *bmap = NULL;
+       isl_map *map = NULL;
        struct isl_token *tok;
        struct vars *v = NULL;
        struct isl_obj obj = { isl_obj_set, NULL };
 
-       tok = isl_stream_next_token(s);
+       tok = next_token(s);
        if (!tok) {
                isl_stream_error(s, NULL, "unexpected EOF");
                goto error;
@@ -1769,12 +2068,15 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam)
                }
                isl_stream_push_token(s, tok2);
                isl_stream_push_token(s, tok);
-               map = map_read_polylib(s, nparam);
+               map = map_read_polylib(s);
                if (!map)
                        goto error;
-               if (isl_map_dim(map, isl_dim_in) > 0)
+               if (isl_map_may_be_set(map))
+                       obj.v = isl_map_range(map);
+               else {
                        obj.type = isl_obj_map;
-               obj.v = map;
+                       obj.v = map;
+               }
                return obj;
        }
        v = vars_new(s->ctx);
@@ -1782,14 +2084,12 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam)
                isl_stream_push_token(s, tok);
                goto error;
        }
-       bmap = isl_basic_map_alloc(s->ctx, 0, 0, 0, 0, 0, 0);
+       map = isl_map_universe(isl_space_params_alloc(s->ctx, 0));
        if (tok->type == '[') {
                isl_stream_push_token(s, tok);
-               bmap = read_tuple(s, bmap, isl_dim_param, v);
-               if (!bmap)
+               map = read_map_tuple(s, map, isl_dim_param, v, 0, 0);
+               if (!map)
                        goto error;
-               if (nparam >= 0)
-                       isl_assert(s->ctx, nparam == v->n, goto error);
                tok = isl_stream_next_token(s);
                if (!tok || tok->type != ISL_TOKEN_TO) {
                        isl_stream_error(s, tok, "expecting '->'");
@@ -1799,8 +2099,7 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam)
                }
                isl_token_free(tok);
                tok = isl_stream_next_token(s);
-       } else if (nparam > 0)
-               bmap = isl_basic_map_add(bmap, isl_dim_param, nparam);
+       }
        if (!tok || tok->type != '{') {
                isl_stream_error(s, tok, "expecting '{'");
                if (tok)
@@ -1816,14 +2115,12 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam)
                isl_token_free(tok);
                if (isl_stream_eat(s, '='))
                        goto error;
-               bmap = read_tuple(s, bmap, isl_dim_param, v);
-               if (!bmap)
+               map = read_map_tuple(s, map, isl_dim_param, v, 0, 1);
+               if (!map)
                        goto error;
-               if (nparam >= 0)
-                       isl_assert(s->ctx, nparam == v->n, goto error);
        } else if (tok->type == '}') {
                obj.type = isl_obj_union_set;
-               obj.v = isl_union_set_empty(isl_basic_map_get_dim(bmap));
+               obj.v = isl_union_set_empty(isl_map_get_space(map));
                isl_token_free(tok);
                goto done;
        } else
@@ -1832,7 +2129,7 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam)
        for (;;) {
                struct isl_obj o;
                tok = NULL;
-               o = obj_read_body(s, isl_basic_map_copy(bmap), v);
+               o = obj_read_body(s, isl_map_copy(map), v);
                if (o.type == isl_obj_none || !o.v)
                        goto error;
                if (!obj.v)
@@ -1846,6 +2143,10 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam)
                if (!tok || tok->type != ';')
                        break;
                isl_token_free(tok);
+               if (isl_stream_next_token_is(s, '}')) {
+                       tok = isl_stream_next_token(s);
+                       break;
+               }
        }
 
        if (tok && tok->type == '}') {
@@ -1858,11 +2159,11 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam)
        }
 done:
        vars_free(v);
-       isl_basic_map_free(bmap);
+       isl_map_free(map);
 
        return obj;
 error:
-       isl_basic_map_free(bmap);
+       isl_map_free(map);
        obj.type->free(obj.v);
        if (v)
                vars_free(v);
@@ -1872,18 +2173,20 @@ error:
 
 struct isl_obj isl_stream_read_obj(struct isl_stream *s)
 {
-       return obj_read(s, -1);
+       return obj_read(s);
 }
 
-__isl_give isl_map *isl_stream_read_map(struct isl_stream *s, int nparam)
+__isl_give isl_map *isl_stream_read_map(struct isl_stream *s)
 {
        struct isl_obj obj;
-       struct isl_map *map;
 
-       obj = obj_read(s, nparam);
+       obj = obj_read(s);
        if (obj.v)
                isl_assert(s->ctx, obj.type == isl_obj_map ||
                                   obj.type == isl_obj_set, goto error);
+       
+       if (obj.type == isl_obj_set)
+               obj.v = isl_map_from_range(obj.v);
 
        return obj.v;
 error:
@@ -1891,14 +2194,18 @@ error:
        return NULL;
 }
 
-__isl_give isl_set *isl_stream_read_set(struct isl_stream *s, int nparam)
+__isl_give isl_set *isl_stream_read_set(struct isl_stream *s)
 {
        struct isl_obj obj;
-       struct isl_set *set;
 
-       obj = obj_read(s, nparam);
-       if (obj.v)
+       obj = obj_read(s);
+       if (obj.v) {
+               if (obj.type == isl_obj_map && isl_map_may_be_set(obj.v)) {
+                       obj.v = isl_map_range(obj.v);
+                       obj.type = isl_obj_set;
+               }
                isl_assert(s->ctx, obj.type == isl_obj_set, goto error);
+       }
 
        return obj.v;
 error:
@@ -1909,9 +2216,8 @@ error:
 __isl_give isl_union_map *isl_stream_read_union_map(struct isl_stream *s)
 {
        struct isl_obj obj;
-       isl_union_map *umap;
 
-       obj = obj_read(s, -1);
+       obj = obj_read(s);
        if (obj.type == isl_obj_map) {
                obj.type = isl_obj_union_map;
                obj.v = isl_union_map_from_map(obj.v);
@@ -1920,9 +2226,11 @@ __isl_give isl_union_map *isl_stream_read_union_map(struct isl_stream *s)
                obj.type = isl_obj_union_set;
                obj.v = isl_union_set_from_set(obj.v);
        }
-       if (obj.v)
-               isl_assert(s->ctx, obj.type == isl_obj_union_map ||
-                                  obj.type == isl_obj_union_set, goto error);
+       if (obj.v && obj.type == isl_obj_union_set &&
+           isl_union_set_is_empty(obj.v))
+               obj.type = isl_obj_union_map;
+       if (obj.v && obj.type != isl_obj_union_map)
+               isl_die(s->ctx, isl_error_invalid, "invalid input", goto error);
 
        return obj.v;
 error:
@@ -1933,9 +2241,8 @@ error:
 __isl_give isl_union_set *isl_stream_read_union_set(struct isl_stream *s)
 {
        struct isl_obj obj;
-       isl_union_set *uset;
 
-       obj = obj_read(s, -1);
+       obj = obj_read(s);
        if (obj.type == isl_obj_set) {
                obj.type = isl_obj_union_set;
                obj.v = isl_union_set_from_set(obj.v);
@@ -1949,13 +2256,13 @@ error:
        return NULL;
 }
 
-static struct isl_basic_map *basic_map_read(struct isl_stream *s, int nparam)
+static __isl_give isl_basic_map *basic_map_read(struct isl_stream *s)
 {
        struct isl_obj obj;
        struct isl_map *map;
        struct isl_basic_map *bmap;
 
-       obj = obj_read(s, nparam);
+       obj = obj_read(s);
        map = obj.v;
        if (!map)
                return NULL;
@@ -1975,108 +2282,127 @@ error:
        return NULL;
 }
 
+static __isl_give isl_basic_set *basic_set_read(struct isl_stream *s)
+{
+       isl_basic_map *bmap;
+       bmap = basic_map_read(s);
+       if (!bmap)
+               return NULL;
+       if (!isl_basic_map_may_be_set(bmap))
+               isl_die(s->ctx, isl_error_invalid,
+                       "input is not a set", goto error);
+       return isl_basic_map_range(bmap);
+error:
+       isl_basic_map_free(bmap);
+       return NULL;
+}
+
 __isl_give isl_basic_map *isl_basic_map_read_from_file(isl_ctx *ctx,
-               FILE *input, int nparam)
+       FILE *input)
 {
        struct isl_basic_map *bmap;
        struct isl_stream *s = isl_stream_new_file(ctx, input);
        if (!s)
                return NULL;
-       bmap = basic_map_read(s, nparam);
+       bmap = basic_map_read(s);
        isl_stream_free(s);
        return bmap;
 }
 
 __isl_give isl_basic_set *isl_basic_set_read_from_file(isl_ctx *ctx,
-               FILE *input, int nparam)
+       FILE *input)
 {
-       struct isl_basic_map *bmap;
-       bmap = isl_basic_map_read_from_file(ctx, input, nparam);
-       if (!bmap)
+       isl_basic_set *bset;
+       struct isl_stream *s = isl_stream_new_file(ctx, input);
+       if (!s)
                return NULL;
-       isl_assert(ctx, isl_basic_map_n_in(bmap) == 0, goto error);
-       return (struct isl_basic_set *)bmap;
-error:
-       isl_basic_map_free(bmap);
-       return NULL;
+       bset = basic_set_read(s);
+       isl_stream_free(s);
+       return bset;
 }
 
 struct isl_basic_map *isl_basic_map_read_from_str(struct isl_ctx *ctx,
-               const char *str, int nparam)
+       const char *str)
 {
        struct isl_basic_map *bmap;
        struct isl_stream *s = isl_stream_new_str(ctx, str);
        if (!s)
                return NULL;
-       bmap = basic_map_read(s, nparam);
+       bmap = basic_map_read(s);
        isl_stream_free(s);
        return bmap;
 }
 
 struct isl_basic_set *isl_basic_set_read_from_str(struct isl_ctx *ctx,
-               const char *str, int nparam)
+       const char *str)
 {
-       struct isl_basic_map *bmap;
-       bmap = isl_basic_map_read_from_str(ctx, str, nparam);
-       if (!bmap)
+       isl_basic_set *bset;
+       struct isl_stream *s = isl_stream_new_str(ctx, str);
+       if (!s)
                return NULL;
-       isl_assert(ctx, isl_basic_map_n_in(bmap) == 0, goto error);
-       return (struct isl_basic_set *)bmap;
-error:
-       isl_basic_map_free(bmap);
-       return NULL;
+       bset = basic_set_read(s);
+       isl_stream_free(s);
+       return bset;
 }
 
 __isl_give isl_map *isl_map_read_from_file(struct isl_ctx *ctx,
-               FILE *input, int nparam)
+       FILE *input)
 {
        struct isl_map *map;
        struct isl_stream *s = isl_stream_new_file(ctx, input);
        if (!s)
                return NULL;
-       map = isl_stream_read_map(s, nparam);
+       map = isl_stream_read_map(s);
        isl_stream_free(s);
        return map;
 }
 
 __isl_give isl_map *isl_map_read_from_str(struct isl_ctx *ctx,
-               const char *str, int nparam)
+       const char *str)
 {
        struct isl_map *map;
        struct isl_stream *s = isl_stream_new_str(ctx, str);
        if (!s)
                return NULL;
-       map = isl_stream_read_map(s, nparam);
+       map = isl_stream_read_map(s);
        isl_stream_free(s);
        return map;
 }
 
 __isl_give isl_set *isl_set_read_from_file(struct isl_ctx *ctx,
-               FILE *input, int nparam)
+       FILE *input)
 {
-       struct isl_map *map;
-       map = isl_map_read_from_file(ctx, input, nparam);
-       if (!map)
+       isl_set *set;
+       struct isl_stream *s = isl_stream_new_file(ctx, input);
+       if (!s)
                return NULL;
-       isl_assert(ctx, isl_map_n_in(map) == 0, goto error);
-       return (struct isl_set *)map;
-error:
-       isl_map_free(map);
-       return NULL;
+       set = isl_stream_read_set(s);
+       isl_stream_free(s);
+       return set;
 }
 
 struct isl_set *isl_set_read_from_str(struct isl_ctx *ctx,
-               const char *str, int nparam)
+       const char *str)
 {
-       struct isl_map *map;
-       map = isl_map_read_from_str(ctx, str, nparam);
-       if (!map)
+       isl_set *set;
+       struct isl_stream *s = isl_stream_new_str(ctx, str);
+       if (!s)
                return NULL;
-       isl_assert(ctx, isl_map_n_in(map) == 0, goto error);
-       return (struct isl_set *)map;
-error:
-       isl_map_free(map);
-       return NULL;
+       set = isl_stream_read_set(s);
+       isl_stream_free(s);
+       return set;
+}
+
+__isl_give isl_union_map *isl_union_map_read_from_file(isl_ctx *ctx,
+       FILE *input)
+{
+       isl_union_map *umap;
+       struct isl_stream *s = isl_stream_new_file(ctx, input);
+       if (!s)
+               return NULL;
+       umap = isl_stream_read_union_map(s);
+       isl_stream_free(s);
+       return umap;
 }
 
 __isl_give isl_union_map *isl_union_map_read_from_str(struct isl_ctx *ctx,
@@ -2091,6 +2417,18 @@ __isl_give isl_union_map *isl_union_map_read_from_str(struct isl_ctx *ctx,
        return umap;
 }
 
+__isl_give isl_union_set *isl_union_set_read_from_file(isl_ctx *ctx,
+       FILE *input)
+{
+       isl_union_set *uset;
+       struct isl_stream *s = isl_stream_new_file(ctx, input);
+       if (!s)
+               return NULL;
+       uset = isl_stream_read_union_set(s);
+       isl_stream_free(s);
+       return uset;
+}
+
 __isl_give isl_union_set *isl_union_set_read_from_str(struct isl_ctx *ctx,
                const char *str)
 {
@@ -2138,22 +2476,18 @@ error:
        return NULL;
 }
 
-static __isl_give isl_vec *vec_read(struct isl_stream *s,
-       unsigned input_format)
+static __isl_give isl_vec *vec_read(struct isl_stream *s)
 {
-       if (input_format == ISL_FORMAT_POLYLIB)
-               return isl_vec_read_polylib(s);
-       isl_assert(s->ctx, 0, return NULL);
+       return isl_vec_read_polylib(s);
 }
 
-struct isl_vec *isl_vec_read_from_file(struct isl_ctx *ctx,
-               FILE *input, unsigned input_format)
+__isl_give isl_vec *isl_vec_read_from_file(isl_ctx *ctx, FILE *input)
 {
        isl_vec *v;
        struct isl_stream *s = isl_stream_new_file(ctx, input);
        if (!s)
                return NULL;
-       v = vec_read(s, input_format);
+       v = vec_read(s);
        isl_stream_free(s);
        return v;
 }
@@ -2162,9 +2496,8 @@ __isl_give isl_pw_qpolynomial *isl_stream_read_pw_qpolynomial(
        struct isl_stream *s)
 {
        struct isl_obj obj;
-       struct isl_pw_qpolynomial *pwqp;
 
-       obj = obj_read(s, -1);
+       obj = obj_read(s);
        if (obj.v)
                isl_assert(s->ctx, obj.type == isl_obj_pw_qpolynomial,
                           goto error);
@@ -2186,3 +2519,401 @@ __isl_give isl_pw_qpolynomial *isl_pw_qpolynomial_read_from_str(isl_ctx *ctx,
        isl_stream_free(s);
        return pwqp;
 }
+
+__isl_give isl_pw_qpolynomial *isl_pw_qpolynomial_read_from_file(isl_ctx *ctx,
+               FILE *input)
+{
+       isl_pw_qpolynomial *pwqp;
+       struct isl_stream *s = isl_stream_new_file(ctx, input);
+       if (!s)
+               return NULL;
+       pwqp = isl_stream_read_pw_qpolynomial(s);
+       isl_stream_free(s);
+       return pwqp;
+}
+
+/* Is the next token an identifer not in "v"?
+ */
+static int next_is_fresh_ident(struct isl_stream *s, struct vars *v)
+{
+       int n = v->n;
+       int fresh;
+       struct isl_token *tok;
+
+       tok = isl_stream_next_token(s);
+       if (!tok)
+               return 0;
+       fresh = tok->type == ISL_TOKEN_IDENT && vars_pos(v, tok->u.s, -1) >= n;
+       isl_stream_push_token(s, tok);
+
+       vars_drop(v, v->n - n);
+
+       return fresh;
+}
+
+/* First read the domain of the affine expression, which may be
+ * a parameter space or a set.
+ * The tricky part is that we don't know if the domain is a set or not,
+ * so when we are trying to read the domain, we may actually be reading
+ * the affine expression itself (defined on a parameter domains)
+ * If the tuple we are reading is named, we assume it's the domain.
+ * Also, if inside the tuple, the first thing we find is a nested tuple
+ * or a new identifier, we again assume it's the domain.
+ * Otherwise, we assume we are reading an affine expression.
+ */
+static __isl_give isl_set *read_aff_domain(struct isl_stream *s,
+       __isl_take isl_set *dom, struct vars *v)
+{
+       struct isl_token *tok;
+
+       tok = isl_stream_next_token(s);
+       if (tok && (tok->type == ISL_TOKEN_IDENT || tok->is_keyword)) {
+               isl_stream_push_token(s, tok);
+               return read_map_tuple(s, dom, isl_dim_set, v, 1, 0);
+       }
+       if (!tok || tok->type != '[') {
+               isl_stream_error(s, tok, "expecting '['");
+               goto error;
+       }
+       if (next_is_tuple(s) || next_is_fresh_ident(s, v)) {
+               isl_stream_push_token(s, tok);
+               dom = read_map_tuple(s, dom, isl_dim_set, v, 1, 0);
+       } else
+               isl_stream_push_token(s, tok);
+
+       return dom;
+error:
+       if (tok)
+               isl_stream_push_token(s, tok);
+       isl_set_free(dom);
+       return NULL;
+}
+
+/* Read an affine expression from "s".
+ */
+__isl_give isl_aff *isl_stream_read_aff(struct isl_stream *s)
+{
+       isl_aff *aff;
+       isl_multi_aff *ma;
+
+       ma = isl_stream_read_multi_aff(s);
+       if (!ma)
+               return NULL;
+       if (isl_multi_aff_dim(ma, isl_dim_out) != 1)
+               isl_die(s->ctx, isl_error_invalid,
+                       "expecting single affine expression",
+                       goto error);
+
+       aff = isl_multi_aff_get_aff(ma, 0);
+       isl_multi_aff_free(ma);
+       return aff;
+error:
+       isl_multi_aff_free(ma);
+       return NULL;
+}
+
+/* Read a piecewise affine expression from "s" with domain (space) "dom".
+ */
+static __isl_give isl_pw_aff *read_pw_aff_with_dom(struct isl_stream *s,
+       __isl_take isl_set *dom, struct vars *v)
+{
+       isl_pw_aff *pwaff = NULL;
+
+       if (!isl_set_is_params(dom) && isl_stream_eat(s, ISL_TOKEN_TO))
+               goto error;
+
+       if (isl_stream_eat(s, '['))
+               goto error;
+
+       pwaff = accept_affine(s, isl_set_get_space(dom), v);
+
+       if (isl_stream_eat(s, ']'))
+               goto error;
+
+       dom = read_optional_disjuncts(s, dom, v, 0);
+       pwaff = isl_pw_aff_intersect_domain(pwaff, dom);
+
+       return pwaff;
+error:
+       isl_set_free(dom);
+       isl_pw_aff_free(pwaff);
+       return NULL;
+}
+
+__isl_give isl_pw_aff *isl_stream_read_pw_aff(struct isl_stream *s)
+{
+       struct vars *v;
+       isl_set *dom = NULL;
+       isl_set *aff_dom;
+       isl_pw_aff *pa = NULL;
+       int n;
+
+       v = vars_new(s->ctx);
+       if (!v)
+               return NULL;
+
+       dom = isl_set_universe(isl_space_params_alloc(s->ctx, 0));
+       if (next_is_tuple(s)) {
+               dom = read_map_tuple(s, dom, isl_dim_param, v, 1, 0);
+               if (isl_stream_eat(s, ISL_TOKEN_TO))
+                       goto error;
+       }
+       if (isl_stream_eat(s, '{'))
+               goto error;
+
+       n = v->n;
+       aff_dom = read_aff_domain(s, isl_set_copy(dom), v);
+       pa = read_pw_aff_with_dom(s, aff_dom, v);
+       vars_drop(v, v->n - n);
+
+       while (isl_stream_eat_if_available(s, ';')) {
+               isl_pw_aff *pa_i;
+
+               n = v->n;
+               aff_dom = read_aff_domain(s, isl_set_copy(dom), v);
+               pa_i = read_pw_aff_with_dom(s, aff_dom, v);
+               vars_drop(v, v->n - n);
+
+               pa = isl_pw_aff_union_add(pa, pa_i);
+       }
+
+       if (isl_stream_eat(s, '}'))
+               goto error;
+
+       vars_free(v);
+       isl_set_free(dom);
+       return pa;
+error:
+       vars_free(v);
+       isl_set_free(dom);
+       isl_pw_aff_free(pa);
+       return NULL;
+}
+
+__isl_give isl_aff *isl_aff_read_from_str(isl_ctx *ctx, const char *str)
+{
+       isl_aff *aff;
+       struct isl_stream *s = isl_stream_new_str(ctx, str);
+       if (!s)
+               return NULL;
+       aff = isl_stream_read_aff(s);
+       isl_stream_free(s);
+       return aff;
+}
+
+__isl_give isl_pw_aff *isl_pw_aff_read_from_str(isl_ctx *ctx, const char *str)
+{
+       isl_pw_aff *pa;
+       struct isl_stream *s = isl_stream_new_str(ctx, str);
+       if (!s)
+               return NULL;
+       pa = isl_stream_read_pw_aff(s);
+       isl_stream_free(s);
+       return pa;
+}
+
+/* Read an isl_pw_multi_aff from "s".
+ * We currently read a generic object and if it turns out to be a set or
+ * a map, we convert that to an isl_pw_multi_aff.
+ * It would be more efficient if we were to construct the isl_pw_multi_aff
+ * directly.
+ */
+__isl_give isl_pw_multi_aff *isl_stream_read_pw_multi_aff(struct isl_stream *s)
+{
+       struct isl_obj obj;
+
+       obj = obj_read(s);
+       if (!obj.v)
+               return NULL;
+
+       if (obj.type == isl_obj_map)
+               return isl_pw_multi_aff_from_map(obj.v);
+       if (obj.type == isl_obj_set)
+               return isl_pw_multi_aff_from_set(obj.v);
+
+       obj.type->free(obj.v);
+       isl_die(s->ctx, isl_error_invalid, "unexpected object type",
+               return NULL);
+}
+
+__isl_give isl_pw_multi_aff *isl_pw_multi_aff_read_from_str(isl_ctx *ctx,
+       const char *str)
+{
+       isl_pw_multi_aff *pma;
+       struct isl_stream *s = isl_stream_new_str(ctx, str);
+       if (!s)
+               return NULL;
+       pma = isl_stream_read_pw_multi_aff(s);
+       isl_stream_free(s);
+       return pma;
+}
+
+/* Assuming "pa" represents a single affine expression defined on a universe
+ * domain, extract this affine expression.
+ */
+static __isl_give isl_aff *aff_from_pw_aff(__isl_take isl_pw_aff *pa)
+{
+       isl_aff *aff;
+
+       if (!pa)
+               return NULL;
+       if (pa->n != 1)
+               isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
+                       "expecting single affine expression",
+                       goto error);
+       if (!isl_set_plain_is_universe(pa->p[0].set))
+               isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
+                       "expecting universe domain",
+                       goto error);
+
+       aff = isl_aff_copy(pa->p[0].aff);
+       isl_pw_aff_free(pa);
+       return aff;
+error:
+       isl_pw_aff_free(pa);
+       return NULL;
+}
+
+/* Read a multi-affine expression from "s".
+ * If the multi-affine expression has a domain, then then tuple
+ * representing this domain cannot involve any affine expressions.
+ * The tuple representing the actual expressions needs to consist
+ * of only affine expressions.  Moreover, these expressions can
+ * only depend on parameters and input dimensions and not on other
+ * output dimensions.
+ */
+__isl_give isl_multi_aff *isl_stream_read_multi_aff(struct isl_stream *s)
+{
+       struct vars *v;
+       isl_set *dom = NULL;
+       isl_multi_pw_aff *tuple = NULL;
+       int dim, i, n;
+       isl_space *space, *dom_space;
+       isl_multi_aff *ma = NULL;
+
+       v = vars_new(s->ctx);
+       if (!v)
+               return NULL;
+
+       dom = isl_set_universe(isl_space_params_alloc(s->ctx, 0));
+       if (next_is_tuple(s)) {
+               dom = read_map_tuple(s, dom, isl_dim_param, v, 1, 0);
+               if (isl_stream_eat(s, ISL_TOKEN_TO))
+                       goto error;
+       }
+       if (!isl_set_plain_is_universe(dom))
+               isl_die(s->ctx, isl_error_invalid,
+                       "expecting universe parameter domain", goto error);
+       if (isl_stream_eat(s, '{'))
+               goto error;
+
+       tuple = read_tuple(s, v, 0, 0);
+       if (!tuple)
+               goto error;
+       if (isl_stream_eat_if_available(s, ISL_TOKEN_TO)) {
+               isl_set *set;
+               isl_space *space;
+               int has_expr;
+
+               has_expr = tuple_has_expr(tuple);
+               if (has_expr < 0)
+                       goto error;
+               if (has_expr)
+                       isl_die(s->ctx, isl_error_invalid,
+                               "expecting universe domain", goto error);
+               space = isl_space_range(isl_multi_pw_aff_get_space(tuple));
+               set = isl_set_universe(space);
+               dom = isl_set_intersect_params(set, dom);
+               isl_multi_pw_aff_free(tuple);
+               tuple = read_tuple(s, v, 0, 0);
+               if (!tuple)
+                       goto error;
+       }
+
+       if (isl_stream_eat(s, '}'))
+               goto error;
+
+       n = isl_multi_pw_aff_dim(tuple, isl_dim_out);
+       dim = isl_set_dim(dom, isl_dim_all);
+       dom_space = isl_set_get_space(dom);
+       space = isl_space_range(isl_multi_pw_aff_get_space(tuple));
+       space = isl_space_align_params(space, isl_space_copy(dom_space));
+       if (!isl_space_is_params(dom_space))
+               space = isl_space_map_from_domain_and_range(
+                               isl_space_copy(dom_space), space);
+       isl_space_free(dom_space);
+       ma = isl_multi_aff_alloc(space);
+
+       for (i = 0; i < n; ++i) {
+               isl_pw_aff *pa;
+               isl_aff *aff;
+               pa = isl_multi_pw_aff_get_pw_aff(tuple, i);
+               aff = aff_from_pw_aff(pa);
+               if (!aff)
+                       goto error;
+               if (isl_aff_involves_dims(aff, isl_dim_in, dim, i + 1)) {
+                       isl_aff_free(aff);
+                       isl_die(s->ctx, isl_error_invalid,
+                               "not an affine expression", goto error);
+               }
+               aff = isl_aff_drop_dims(aff, isl_dim_in, dim, n);
+               space = isl_multi_aff_get_domain_space(ma);
+               aff = isl_aff_reset_domain_space(aff, space);
+               ma = isl_multi_aff_set_aff(ma, i, aff);
+       }
+
+       isl_multi_pw_aff_free(tuple);
+       vars_free(v);
+       isl_set_free(dom);
+       return ma;
+error:
+       isl_multi_pw_aff_free(tuple);
+       vars_free(v);
+       isl_set_free(dom);
+       isl_multi_aff_free(ma);
+       return NULL;
+}
+
+__isl_give isl_multi_aff *isl_multi_aff_read_from_str(isl_ctx *ctx,
+       const char *str)
+{
+       isl_multi_aff *maff;
+       struct isl_stream *s = isl_stream_new_str(ctx, str);
+       if (!s)
+               return NULL;
+       maff = isl_stream_read_multi_aff(s);
+       isl_stream_free(s);
+       return maff;
+}
+
+__isl_give isl_union_pw_qpolynomial *isl_stream_read_union_pw_qpolynomial(
+       struct isl_stream *s)
+{
+       struct isl_obj obj;
+
+       obj = obj_read(s);
+       if (obj.type == isl_obj_pw_qpolynomial) {
+               obj.type = isl_obj_union_pw_qpolynomial;
+               obj.v = isl_union_pw_qpolynomial_from_pw_qpolynomial(obj.v);
+       }
+       if (obj.v)
+               isl_assert(s->ctx, obj.type == isl_obj_union_pw_qpolynomial,
+                          goto error);
+
+       return obj.v;
+error:
+       obj.type->free(obj.v);
+       return NULL;
+}
+
+__isl_give isl_union_pw_qpolynomial *isl_union_pw_qpolynomial_read_from_str(
+       isl_ctx *ctx, const char *str)
+{
+       isl_union_pw_qpolynomial *upwqp;
+       struct isl_stream *s = isl_stream_new_str(ctx, str);
+       if (!s)
+               return NULL;
+       upwqp = isl_stream_read_union_pw_qpolynomial(s);
+       isl_stream_free(s);
+       return upwqp;
+}