Dip  0.92.4
sym_pack_array.h
Go to the documentation of this file.
1 /*===========================================================================*/
2 /* */
3 /* This file is part of the SYMPHONY MILP Solver Framework. */
4 /* */
5 /* SYMPHONY was jointly developed by Ted Ralphs (ted@lehigh.edu) and */
6 /* Laci Ladanyi (ladanyi@us.ibm.com). */
7 /* */
8 /* (c) Copyright 2000-2019 Ted Ralphs. All Rights Reserved. */
9 /* */
10 /* This software is licensed under the Eclipse Public License. Please see */
11 /* accompanying file for terms. */
12 /* */
13 /*===========================================================================*/
14 
15 #ifndef _PACK_ARRAY_H
16 #define _PACK_ARRAY_H
17 
18 #include "sym_proto.h"
19 #include "sym_types.h"
20 
21 void pack_array_desc PROTO((array_desc *adesc));
22 array_desc *unpack_array_desc PROTO((array_desc *padesc));
23 void pack_double_array_desc PROTO((double_array_desc *dad,
24  char explicit_packing));
25 void unpack_double_array_desc PROTO((double_array_desc *dad,
26  char explicit_packing));
27 void pack_basis PROTO((basis_desc *basis, char explicit_packing));
28 basis_desc *unpack_basis PROTO((basis_desc *pbasis, char explicit_packing));
29 
30 #endif
#define PROTO(x)
Definition: sym_proto.h:27