org.chocosolver.graphsolver.cstrs.symmbreaking.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of choco-graph Show documentation
Show all versions of choco-graph Show documentation
A graph module for Choco Solver.
package org.chocosolver.graphsolver.cstrs.symmbreaking;
/**
* @author Моклев Вячеслав
*/
public class Pair {
private T a;
private V b;
public Pair(T a, V b) {
this.a = a;
this.b = b;
}
public T getA() {
return a;
}
public V getB() {
return b;
}
}