Guest User

Untitled

a guest
Sep 25th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class LPSolver {
  2. // add constraint ax + by + cz + d < 0 (plane equation), and return false if infeasible
  3. bool add_constraint(int a, int b, int c, int d);
  4. };
Add Comment
Please, Sign In to add comment