package fr.orsay.lri.varna.models.treealign; /** * The result of aligning a tree T1 with a tree T2. * On the resulting tree, each node has a value * of type AlignedNode. * @author Raphael Champeimont */ public class TreeAlignResult { private Tree> alignment; private double distance; public Tree> getAlignment() { return alignment; } public void setAlignment(Tree> alignment) { this.alignment = alignment; } public double getDistance() { return distance; } public void setDistance(double distance) { this.distance = distance; } }