lib/browser/GraphBrowser/Box.java
author huffman
Sun, 13 Nov 2011 19:26:53 +0100
changeset 45480 a39bb6d42ace
parent 33686 8e33ca8832b1
permissions -rw-r--r--
remove unnecessary number-representation-specific rules from metis calls; speed up another proof

/***************************************************************************
  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;
  }
}