Axiom.Runtime.UnitTests._Builtins.bound_1_bound C# (CSharp) Метод

bound_1_bound() приватный Метод

private bound_1_bound ( ) : void
Результат void
        public void bound_1_bound()
        {
            AbstractMachineState state = SetupMachine();
            AMProgram program = (AMProgram)state.Program;

            _p = new BoundPredicate();

            AbstractTerm X0 = (AbstractTerm)state["X0"];

            Choicepoint b = new Choicepoint();
            ProgramClause nextClause = new ProgramClause();
            state.B = new Choicepoint(0, null, null, b, nextClause, 2, null);

            Verify("bound", 1);
            _p.Execute(state);

            Assert.AreNotSame(nextClause, program.P);
        }