export function Node2(v, a, b) {
    this.v = v;
    this.a = a;
    this.b = b;
}