00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _plIneqConstraint_h_
00020 #define _plIneqConstraint_h_
00021
00022
00023 #include <plCndKernel.h>
00024 #include <plVariablesConjunction.h>
00025 #include <plExternalFunction.h>
00026 #include <plSymbol.h>
00027
00028
00040 class plIneqConstraint : public plCndKernel
00041 {
00042 public:
00046 plIneqConstraint(const plSymbol& constraint_variable,
00047 const plExternalFunction& constraint_function,
00048 unsigned int constraint_size);
00049
00050
00052 virtual ~plIneqConstraint(){};
00053 };
00054
00055
00056 #endif