Advertisement
froleyks

temp.cpp

Aug 11th, 2020
1,396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. typedef struct Ext {
  2.   unsigned equiv:1,melted:1,blocking:2,eliminated:1,tmpfrozen:1,imported:1;
  3.   unsigned assumed:2,failed:2,aliased:1,important:1;
  4.   signed int val:2, oldval:2;
  5.   int repr, frozen;
  6. } Ext;
  7.  
  8. static Ext * lglelit2ext (LGL * lgl, int elit) {
  9.   int idx = abs (elit);
  10.   assert (0 < idx), assert (idx <= lgl->maxext);
  11.   return lgl->ext + idx;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement