public class Neighblink {

	public int left;
	public int right;
	public double coef;

	public Neighblink(final int idleft, final int idright, final double coef) {
		super();
		this.left = idleft;
		this.right = idright;
		this.coef = coef;
	}

	public Neighblink() {
		super();
	}

	public int getLeft() {
		return left;
	}

	public void setLeft(int left) {
		this.left = left;
	}

	public int getRight() {
		return right;
	}

	public void setRight(int right) {
		this.right = right;
	}

	public double getCoef() {
		return coef;
	}

	public void setCoef(double coef) {
		this.coef = coef;
	}

}
