1 /*
2  * Name:    isfeas.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 ISFEAS_H
11 #define ISFEAS_H
12 
13 #include "sparse.h"
14 
15 int isFeas (sparseLP *,    /* sparse LP data                          */
16 	    char     *,    /* alleged fulfilled constraints           */
17 	    double   *,    /* current point                           */
18             int      *);   /* alleged number of constraints satisfied */
19 
20 #endif
21