1 /*
2  * Name:   linopt.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 LINOPT_H
11 #define LINOPT_H
12 
13 #include "sparse.h"
14 
15 int compare_abs (const void *one, const void *two);
16 
17 double one_opt (sparseLP *, double *, double *, double);
18 
19 #endif
20