Formatting
[openscop.git] / include / openscop / vector.h
blobcf50e793e901c867df82ee3fec109eeff6d0b5c6
2 /*+-----------------------------------------------------------------**
3 ** OpenScop Library **
4 **-----------------------------------------------------------------**
5 ** vector.h **
6 **-----------------------------------------------------------------**
7 ** First version: 01/05/2008 **
8 **-----------------------------------------------------------------**
11 *****************************************************************************
12 * OpenScop: Structures and formats for polyhedral tools to talk together *
13 *****************************************************************************
14 * ,___,,_,__,,__,,__,,__,,_,__,,_,__,,__,,___,_,__,,_,__, *
15 * / / / // // // // / / / // // / / // / /|,_, *
16 * / / / // // // // / / / // // / / // / / / /\ *
17 * |~~~|~|~~~|~~~|~~~|~~~|~|~~~|~|~~~|~~~|~~~|~|~~~|~|~~~|/_/ \ *
18 * | G |C| P | = | L | P |=| = |C| = | = | = |=| = |=| C |\ \ /\ *
19 * | R |l| o | = | e | l |=| = |a| = | = | = |=| = |=| L | \# \ /\ *
20 * | A |a| l | = | t | u |=| = |n| = | = | = |=| = |=| o | |\# \ \ *
21 * | P |n| l | = | s | t |=| = |d| = | = | = | | |=| o | | \# \ \ *
22 * | H | | y | | e | o | | = |l| | | = | | | | G | | \ \ \ *
23 * | I | | | | e | | | | | | | | | | | | | \ \ \ *
24 * | T | | | | | | | | | | | | | | | | | \ \ \ *
25 * | E | | | | | | | | | | | | | | | | | \ \ \ *
26 * | * |*| * | * | * | * |*| * |*| * | * | * |*| * |*| * | / \* \ \ *
27 * | O |p| e | n | S | c |o| p |-| L | i | b |r| a |r| y |/ \ \ / *
28 * '---'-'---'---'---'---'-'---'-'---'---'---'-'---'-'---' '--' *
29 * *
30 * Copyright (C) 2008 University Paris-Sud 11 and INRIA *
31 * *
32 * (3-clause BSD license) *
33 * Redistribution and use in source and binary forms, with or without *
34 * modification, are permitted provided that the following conditions *
35 * are met: *
36 * *
37 * 1. Redistributions of source code must retain the above copyright notice, *
38 * this list of conditions and the following disclaimer. *
39 * 2. Redistributions in binary form must reproduce the above copyright *
40 * notice, this list of conditions and the following disclaimer in the *
41 * documentation and/or other materials provided with the distribution. *
42 * 3. The name of the author may not be used to endorse or promote products *
43 * derived from this software without specific prior written permission. *
44 * *
45 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR *
46 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES *
47 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. *
48 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, *
49 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT *
50 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, *
51 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY *
52 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
53 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF *
54 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
55 * *
56 * OpenScop Library, a library to manipulate OpenScop formats and data *
57 * structures. Written by: *
58 * Cedric Bastoul <Cedric.Bastoul@u-psud.fr> and *
59 * Louis-Noel Pouchet <Louis-Noel.pouchet@inria.fr> *
60 * *
61 *****************************************************************************/
64 #ifndef OPENSCOP_VECTOR_H
65 # define OPENSCOP_VECTOR_H
67 # include <stdio.h>
68 # include <openscop/macros.h>
71 # if defined(__cplusplus)
72 extern "C"
74 # endif
77 /**
78 * The openscop_vector_t structure stores a vector information in the PolyLib
79 * format (the first entry has a specific meaning). When a vector
80 * describes a linear constraint, a 0 means it is an equality == 0, a 1 means
81 * an inequality >= 0. When the vector describes an array access, a number
82 * different than 0 is the array identifier.
84 struct openscop_vector
86 unsigned Size; /**< The number of vector entries */
87 openscop_int_t * p; /**< An array of values */
89 typedef struct openscop_vector openscop_vector_t;
90 typedef struct openscop_vector * openscop_vector_p;
93 /*+***************************************************************************
94 * Structure display function *
95 *****************************************************************************/
96 void openscop_vector_print_structure(FILE *, openscop_vector_p, int);
97 void openscop_vector_print(FILE *, openscop_vector_p);
100 /*+***************************************************************************
101 * Memory allocation/deallocation function *
102 *****************************************************************************/
103 openscop_vector_p openscop_vector_malloc(unsigned);
104 void openscop_vector_free(openscop_vector_p);
107 /*+***************************************************************************
108 * Processing functions *
109 *****************************************************************************/
110 openscop_vector_p openscop_vector_add_scalar(openscop_vector_p, int);
111 openscop_vector_p openscop_vector_add(openscop_vector_p, openscop_vector_p);
112 openscop_vector_p openscop_vector_sub(openscop_vector_p, openscop_vector_p);
113 void openscop_vector_tag_inequality(openscop_vector_p);
114 void openscop_vector_tag_equality(openscop_vector_p);
115 int openscop_vector_equal(openscop_vector_p, openscop_vector_p);
117 # if defined(__cplusplus)
119 # endif
120 #endif /* define OPENSCOP_VECTOR_H */