示例#1
0
        public void Test_CarSelection1()
        {
            IDecision tmp_project = TestFactory.CarSelectionProblem();

            System.Diagnostics.Debug.WriteLine(tmp_project.ToString());

            AnpSolver       tmp_solver     = new AnpSolver(tmp_project);
            IDecisionResult decisionResult = tmp_solver.Solve();

            Assert.IsNotNull(decisionResult, "success");
        }