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