source: ip/src/main/java/geniusweb/ip/ipSolver/Edge.java@ 52

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 450 bytes
Line 
1package geniusweb.ip.ipSolver;
2
3/**
4 * an object of an edge in the integer partition graph
5 */
6public class Edge {
7 public Node node;
8 public int partThatWasSplit;
9 public int[] twoPartsThatResultedFromTheSplit;
10
11 public Edge(Node node, int partThatWasSplit,
12 int[] twoPartsThatResultedFromTheSplit) {
13 this.node = node;
14 this.partThatWasSplit = partThatWasSplit;
15 this.twoPartsThatResultedFromTheSplit = twoPartsThatResultedFromTheSplit;
16 }
17
18}
Note: See TracBrowser for help on using the repository browser.