#include <cassert>
#include <CGAL/basic.h>
#include <CGAL/QP_models.h>
#include <CGAL/QP_functions.h>
#ifdef CGAL_USE_GMP
#else
#endif
<int**,
int*,
int*>
Program;
int main() {
int Ax1[] = { 1, -1};
int Ax2[] = {-2, 3};
int* A[] = {Ax1, Ax2};
int b[] = {1, -2};
int c[] = {0, 0};
Program lp (2, 2, A, b, r, c);
assert (s.is_infeasible());
Solution::Infeasibility_certificate_iterator y =
s.infeasibility_certificate_begin();
assert (ET(y[0]) >= 0);
assert (ET(y[1]) >= 0);
assert (ET(y[0]) * A[0][0] + ET(y[1]) * A[0][1] >= 0);
assert (ET(y[0]) * A[1][0] + ET(y[1]) * A[1][1] >= 0);
assert (ET(y[0]) * b[0] + ET(y[1]) * b[1] < 0);
return 0;
}