isl_input.c: read_conjuncts: stop parsing conjuncts after first error
[platform/upstream/isl.git] / isl_morph.c
index 664bb75..b5bfa18 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright 2010      INRIA Saclay
  *
- * 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, INRIA Saclay - Ile-de-France,
  * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
@@ -316,7 +316,7 @@ error:
        return NULL;
 }
 
-/* Given a basic set, exploit the equalties in the basic set to construct
+/* Given a basic set, exploit the equalties in the basic set to construct
  * a morphishm that maps the basic set to a lower-dimensional space.
  * Specifically, the morphism reduces the number of dimensions of type "type".
  *
@@ -520,7 +520,7 @@ __isl_give isl_morph *isl_basic_set_parameter_compression(
        H = isl_mat_right_inverse(H);
        if (!H || !d)
                goto error;
-       isl_seq_set(d->el, H->row[0][0], d->size);
+       d = isl_vec_set(d, H->row[0][0]);
        H = isl_mat_drop_rows(H, 0, 1);
        H = isl_mat_drop_cols(H, 0, 1);
        B = isl_mat_product(H, B);