public CausalRelationshipPair RelatedPair(UnexplainedVarianceProportion other)
 {
     return(Input.Title == other.Output.Title &&
            Output.Title == other.Input.Title
         ? new CausalRelationshipPair(this, other)
         : null);
 }
 public CausalRelationshipPair(UnexplainedVarianceProportion left, UnexplainedVarianceProportion right)
 {
     this.UVPLeft  = left;
     this.UVPRight = right;
 }