1 /*
2  * Name:    writelp.c
3  * Author:  Pietro Belotti
4  * Purpose: write feasible subsystem into a .lp file
5  *
6  * This code is published under the Eclipse Public License (EPL).
7  * See http://www.eclipse.org/legal/epl-v10.html
8  *
9  */
10 
11 #ifndef WRITELP_H
12 #define WRITELP_H
13 
14 #include "sparse.h"
15 
16 /*
17  * Write feasible subsystem into a .lp file
18  */
19 
20 int write_lp (sparseLP *lp,   /* LP data   */
21 	      char *mfs,      /* feasible subsystem */
22 	      char *filename  /* file name */
23 	      );
24 
25 #endif
26