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

Last change on this file since 34 was 34, checked in by bart, 3 years ago

Added SAOP and simplerunner to GeniusWebPython. Several minor fixes.

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.