ActiveProtect/Program.cs

21 lines
411 B
C#

using ActiveProtect.Simulation;
using ActiveProtect.Evaluation;
namespace ActiveProtect
{
/// <summary>
/// 主程序
/// </summary>
class Program
{
static void Main(string[] args)
{
// 运行仿真示例
//SimulationExample.RunAllExamples();
// 运行效能评估示例
EvaluationExample.RunAllExamples();
}
}
}