communication.h 283 B

1234567891011
  1. #ifndef __TANGLE_COMMUNICATION_H
  2. #define __TANGLE_COMMUNICATION_H
  3. #include "tangle.h"
  4. void send_top(TangleState state, int node);
  5. void receive_top(TangleState state, int node);
  6. void send_bottom(TangleState state, int node);
  7. void receive_bottom(TangleState state, int node);
  8. #endif