1 /*
2  * Name:   lpio.h
3  * Author: Pietro Belotti
4  *
5  * This code is published under the Eclipse Public License (EPL).
6  * See http://www.eclipse.org/legal/epl-v10.html
7  *
8  */
9 
10 #ifndef LPIO_H
11 #define LPIO_H
12 
13 #include "sparse.h"
14 
15 int  read_problem (sparseLP *, char **);
16 
17 void printLP      (int   *, sparseLP *);
18 void clearLP               (sparseLP *);
19 
20 #endif
21