Package aima.core.agent.impl.aprog.simplerule

Examples of aima.core.agent.impl.aprog.simplerule.NOTCondition


        ATTRIBUTE_CAR_IN_FRONT_IS_INDICATING, true)));
  }

  @Test
  public void testNOTRule() {
    Rule r = new Rule(new NOTCondition(new EQUALCondition(
        ATTRIBUTE_CAR_IN_FRONT_IS_BRAKING, true)),
        ACTION_INITIATE_BRAKING);

    Assert.assertEquals(ACTION_INITIATE_BRAKING, r.getAction());
View Full Code Here

TOP

Related Classes of aima.core.agent.impl.aprog.simplerule.NOTCondition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.