Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. p=p->sig;
  2. i=0;
  3. while(p!=NULL)
  4. {
  5. contIndices[i*4] = p->indexA;
  6. contIndices[i*4+1] = p->indexB;
  7. contIndices[i*4+2] = p->indexR;
  8. contIndices[i*4+3] = p->indexS;
  9. printf("Contraction C (%d): (%d,%d|%d,%d) n", i,
  10. contIndices[i*4],
  11. contIndices[i*4+1],
  12. contIndices[i*4+2],
  13. contIndices[i*4+3]);
  14. p=p->sig;
  15. i++;
  16. }
  17. printf("I'm outn");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement