#ifndef _LPSOL_H__
#define _LPSOL_H__

//
// Object
//
class LPSOL {
  
public:
  Lpsol         ( Constraint*, Optfxn* );
  
public:
  int drawConstraint(int index, float r, float g, float b);
  int drawConstraints(float r, float g, float b);
  int drawSolution(float r, float g, float b);
  int drawOptfxn(float r, float g, float b);
  int drawBB();

private:
  getSoln();
  Soln *_soln;
  Constraint *_H;
  Optfxn  *_c;
  BB *_bb;

};

#endif
