~ubuntu-branches/ubuntu/saucy/gfan/saucy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef LP_SOPLEX_H_INCLUDED
#define LP_SOPLEX_H_INCLUDED

#include "lp.h"
#include "lp_cdd.h"

class LpSolverSoPlexCddGmp : public LpSolverCddGmp
{
 public:
  const char *name(){return "SoPlexCddGmp";}
  bool isFacet(const IntegerVectorList &g, IntegerVectorList::const_iterator i);
  bool hasHomogeneousSolution(int n, const IntegerVectorList &inequalities, const IntegerVectorList &equations);
};

#endif