📄 treservationtable.h
字号:
/***************************************************************************** TReservationTable.h -- Switch reservation table definition *****************************************************************************/#ifndef __TRESERVATIONTABLE_H__#define __TRESERVATIONTABLE_H__//---------------------------------------------------------------------------#include <cassert>using namespace std;//---------------------------------------------------------------------------class TReservationTable{ public: TReservationTable(); // Clear reservation table void clear(); // check if port_out is reservable bool isAvailable(const int port_out) const; // Connects port_in with port_out. Asserts if port_out is reserved void reserve(const int port_in, const int port_out); // Releases port_out connection. // Asserts if port_out is not reserved or not valid void release(const int port_out); // Returns the output port connected to port_in. int getOutputPort(const int port_in) const; // Makes output port no longer available for reservation/release void invalidate(const int port_out);private: vector<int> rtable; // reservation vector: rtable[i] gives the input // port whose output port 'i' is connected to};//---------------------------------------------------------------------------#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -