treservationtable.h
来自「片上网络的noxim仿真平台」· C头文件 代码 · 共 53 行
H
53 行
/***************************************************************************** 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 + =
减小字号Ctrl + -
显示快捷键?