Dip  0.92.4
cnrp_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 /* Capacitated Network Routing Problems. */
6 /* */
7 /* (c) Copyright 2000-2013 Ted Ralphs. All Rights Reserved. */
8 /* */
9 /* This application was developed by Ted Ralphs (ted@lehigh.edu) */
10 /* */
11 /* This software is licensed under the Eclipse Public License. Please see */
12 /* accompanying file for terms. */
13 /* */
14 /*===========================================================================*/
15 
16 #ifndef _CNRP_ROUTINES_H
17 #define _CNRP_ROUTINES_H
18 
19 /* SYMPHONY include files */
20 #include "sym_proto.h"
21 
22 /* CNRP include files */
23 #include "cnrp_types.h"
24 
25 int is_same_edge PROTO((const void *ed0, const void *ed1));
26 void delete_dup_edges PROTO((small_graph *g));
27 void broadcast PROTO((cnrp_problem *cnrp, int *tids, int jobs));
28 void cnrp_create_variables PROTO((cnrp_problem *cnrp));
29 int *create_edge_list PROTO((cnrp_problem *cnrp, int *varnum,
30  char which_edges));
31 
32 #endif
33 
34 
#define PROTO(x)
Definition: sym_proto.h:27