lib/browser/GraphBrowser/Box.java
author wenzelm
Sat, 16 Apr 2011 23:41:58 +0200
changeset 42373 fb539d6d1ac2
parent 33686 8e33ca8832b1
permissions -rw-r--r--
PARALLEL_GOALS for simplification within auto_tac;

/***************************************************************************
  Title:      GraphBrowser/Box.java
  Author:     Gerwin Klein, TU Muenchen

  A box with width and height. Used instead of java.awt.Dimension for 
  batch mode.

***************************************************************************/

package GraphBrowser;

public class Box {
  public int width;
  public int height;

  public Box(int w, int h) {
    this.width = w;
    this.height = h;
  }
}