PIPS-NLP
cBounds.h
Go to the documentation of this file.
1 /* OOQP *
2  * Authors: E. Michael Gertz, Stephen J. Wright *
3  * (C) 2001 University of Chicago. See Copyright Notification in OOQP */
4 
5 #ifndef CBOUNDS
6 #define CBOUNDS
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 void freeBounds( double ** low, char ** ilow,
13  double ** upp, char ** iupp );
14 void newBounds( double ** low, int m, char ** ilow,
15  double ** upp, char ** iupp,
16  int * ierr) ;
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif
void freeBounds(double **low, char **ilow, double **upp, char **iupp)
Definition: cBounds.C:8
void newBounds(double **low, int m, char **ilow, double **upp, char **iupp, int *ierr)
Definition: cBounds.C:18