Dip  0.92.4
spp_master_functions.h
Go to the documentation of this file.
1 /*===========================================================================*/
2 /* */
3 /* This file is part of a demonstration application for use with the */
4 /* SYMPHONY Branch, Cut, and Price Library. This application is a solver for */
5 /* the Set Partitioning Problem. */
6 /* */
7 /* (c) Copyright 2005-2013 Marta Eso and Ted Ralphs. All Rights Reserved. */
8 /* */
9 /* This application was originally developed by Marta Eso and was modified */
10 /* Ted Ralphs (ted@lehigh.edu) */
11 /* */
12 /* This software is licensed under the Eclipse Public License. Please see */
13 /* accompanying file for terms. */
14 /* */
15 /*===========================================================================*/
16 
17 #ifndef _SPP_MASTER_FUNCTIONS_H
18 #define _SPP_MASTER_FUNCTIONS_H
19 
20 #include "sym_proto.h"
21 
22 #include "spp.h"
23 
24 void spp_read_params PROTO((spp_problem *spp, char *filename));
25 void spp_print_params PROTO((spp_problem *spp));
26 void spp_read_input PROTO((spp_problem *spp));
27 void read_our_no_del PROTO((col_ordered *matrix, FILE *f));
28 int read_our_del_dupl PROTO((col_ordered *matrix, FILE *f));
29 void read_our0_no_del PROTO((col_ordered *matrix, FILE *f));
30 int read_our0_del_dupl PROTO((col_ordered *matrix, FILE *f));
31 void spp_fix_lex PROTO((spp_problem *spp));
32 void spp_matrix_to_our PROTO((col_ordered *matrix, char *filename,
33  int *counter));
34 void spp_matrix_to_matlab PROTO((col_ordered *matrix, char *filename,
35  int *counter));
36 #endif
#define PROTO(x)
Definition: sym_proto.h:27