All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.exigen.ie.constrainer.FloatEvent Maven / Gradle / Ivy

package com.exigen.ie.constrainer;

///////////////////////////////////////////////////////////////////////////////
/*
 * Copyright Exigen Group 1998, 1999, 2000
 * 320 Amboy Ave., Metuchen, NJ, 08840, USA, www.exigengroup.com
 *
 * The copyright to the computer program(s) herein
 * is the property of Exigen Group, USA. All rights reserved.
 * The program(s) may be used and/or copied only with
 * the written permission of Exigen Group
 * or in accordance with the terms and conditions
 * stipulated in the agreement/contract under which
 * the program(s) have been supplied.
 */
///////////////////////////////////////////////////////////////////////////////

/**
 * A delta-event about the change(s) in the domain of the constraint floating-point expression.
 * This event contains an information about current and old (before the change(s))
 * domains of the expression.
 */
public abstract class FloatEvent extends EventOfInterest
{
  /**
   * An expression for which this event is.
   */
  protected FloatExp _exp;

  /**
   * Returns the current smallest value of the domain of the expression.
   */
  public abstract double min();

  /**
   * Returns the current largest value of the domain of the expression.
   */
  public abstract double max();

  /**
   * Returns the old smallest value of the domain of the expression.
   */
  public abstract double oldmin();

  /**
   * Returns the old largest value of the domain of the expression.
   */
  public abstract double oldmax();

  /**
   * Returns the delta-change of the smallest value of the domain of the expression.
   */
  public double mindiff()
  {
    return min() - oldmin();
  }

  /**
   * Returns the delta-change of the largest value of the domain of the expression.
   */
  public double maxdiff()
  {
    return max() - oldmax();
  }

  /**
   * Returns the expression for which this event is.
   */
  public FloatExp exp()
  {
    return _exp;
  }

  /**
   * Sets the expression for which this event is.
   */
  public void exp(FloatExp e)
  {
    _exp = e;
  }

  /**
   * Returns a String representation of the changes in the domain.
   */
  public String domainToString()
  {
    return " [" + oldmin() + "-" + min() + " ; " + max() + "-" + oldmax() + "]";
  }

  /**
   * Returns a String representation of this event.
   * @return a String representation of this event.
   */
  public String toString()
  {
    return name() + "(" + _exp + " : " + maskToString() + domainToString() +  ")";
  }

} // ~FloatEvent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy