using ActiveProtect.Simulation; using ActiveProtect.Evaluation; using ActiveProtect.DataProcessing; namespace ActiveProtect { /// /// 主程序 /// class Program { static void Main(string[] args) { // 运行仿真示例 SimulationExample.RunAllExamples(); // 运行效能评估示例 EvaluationExample.RunAllExamples(); // 运行数据记录示例 SimulationRecordExample.RunExample(); } } }