All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.chocosolver.graphsolver.cstrs.symmbreaking.Pair Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy