1 /* Bitset vectors.
2 
3    Copyright (C) 2002, 2004, 2009-2015, 2018-2021 Free Software Foundation,
4    Inc.
5 
6    Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
7 
8    This program is free software: you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation, either version 3 of the License, or
11    (at your option) any later version.
12 
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17 
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
20 
21 #ifndef _BITSETV_H
22 #define _BITSETV_H
23 
24 #include "bitset.h"
25 
26 typedef bitset * bitsetv;
27 
28 /* Free vector of bitsets.  Do nothing if NULL.  */
29 void bitsetv_free (bitsetv);
30 
31 /* Create a vector of N_VECS bitsets, each of N_BITS, and of
32    type TYPE.  */
33 bitsetv bitsetv_alloc (bitset_bindex, bitset_bindex, enum bitset_type)
34   _GL_ATTRIBUTE_DEALLOC (bitsetv_free, 1);
35 
36 /* Create a vector of N_VECS bitsets, each of N_BITS, and with
37    attribute hints specified by ATTR.  */
38 bitsetv bitsetv_create (bitset_bindex, bitset_bindex, unsigned)
39   _GL_ATTRIBUTE_DEALLOC (bitsetv_free, 1);
40 
41 /* Zero vector of bitsets.  */
42 void bitsetv_zero (bitsetv);
43 
44 /* Set vector of bitsets.  */
45 void bitsetv_ones (bitsetv);
46 
47 /* Given a vector BSETV of N bitsets of size N, modify its contents to
48    be the transitive closure of what was given.  */
49 void bitsetv_transitive_closure (bitsetv);
50 
51 /* Given a vector BSETV of N bitsets of size N, modify its contents to
52    be the reflexive transitive closure of what was given.  This is
53    the same as transitive closure but with all bits on the diagonal
54    of the bit matrix set.  */
55 void bitsetv_reflexive_transitive_closure (bitsetv);
56 
57 /* Dump vector of bitsets.  */
58 void bitsetv_dump (FILE *, const char *, const char *, bitsetv);
59 
60 /* Function to debug vector of bitsets from debugger.  */
61 void debug_bitsetv (bitsetv);
62 
63 /* Dump vector of bitsets as a matrix.  */
64 void bitsetv_matrix_dump (FILE *, const char *, bitsetv);
65 
66 #endif  /* _BITSETV_H  */
67