加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cc 847 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hic 提交于 2022-09-22 15:42 . 相关链接注释
//参考
//https://www.csdn.net/tags/OtDaUg0sMTQwOS1ibG9n.html
//https://wenku.baidu.com/view/51202cd1b14e852458fb57f2.html
#include <exception>
#include <iostream>
#include "index.h"
#include "SStd.h"
#include "SRGen.h"
#include "configuration.h"
#include "sim_foundation.h"
#include "mess_queue.h"
extern "C" {
#include "SIM_power.h"
#include "SIM_router_power.h"
#include "SIM_power_router.h"
}
//commented at 2020-5-22
//缩写说明:
//pc:路由器的端口
//vc:虚通道
int main(int argc, char *argv[])
{
try {
SRGen random_gen;
configuration c_par(argc, argv);
cout<<c_par;
//changed at 2020-5-8
//mess_queue network_mess_queue(0.0);
mess_queue network_mess_queue(TIME_0);
sim_foundation sim_net;
network_mess_queue.simulator();
sim_net.simulation_results();
} catch (exception & e) {
cerr << e.what();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化