Package ai.domain.interval

Examples of ai.domain.interval.IntervalExpressionSemantics.plus()


    org.junit.Assert.assertEquals(new Interval(Double.NEGATIVE_INFINITY, 4), sem.plus(new Interval(3,5), new Interval(Double.NEGATIVE_INFINITY, -1)));
    org.junit.Assert.assertEquals(new Interval(-97, Double.POSITIVE_INFINITY), sem.plus(new Interval(3,Double.POSITIVE_INFINITY), new Interval(-100, -1)));
    org.junit.Assert.assertEquals(new Interval(-97, Double.POSITIVE_INFINITY), sem.plus(new Interval(-100, -1), new Interval(3,Double.POSITIVE_INFINITY)));

    org.junit.Assert.assertEquals(new Interval(-97, 4), sem.plus(new Interval(-100, -1), new Interval(3,5)));
    org.junit.Assert.assertEquals(new Interval(-97, 4), sem.plus(new Interval(3,5), new Interval(-100, -1)));
  }

  @Test
  public void testMinus(){
    IntervalExpressionSemantics sem = new IntervalExpressionSemantics();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.