Class GraphUtils.TwoCycleErrors

java.lang.Object
edu.cmu.tetrad.graph.GraphUtils.TwoCycleErrors
Enclosing class:
GraphUtils

public static class GraphUtils.TwoCycleErrors extends Object
Two-cycle errors.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int
    The number of correct edges.
    int
    The number of false negatives.
    int
    The number of false positives.
  • Constructor Summary

    Constructors
    Constructor
    Description
    TwoCycleErrors(int twoCycCor, int twoCycFn, int twoCycFp)
    Constructs a new TwoCycleErrors.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a string representation of this object.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • twoCycCor

      public int twoCycCor
      The number of correct edges.
    • twoCycFn

      public int twoCycFn
      The number of false negatives.
    • twoCycFp

      public int twoCycFp
      The number of false positives.
  • Constructor Details

    • TwoCycleErrors

      public TwoCycleErrors(int twoCycCor, int twoCycFn, int twoCycFp)
      Constructs a new TwoCycleErrors.
      Parameters:
      twoCycCor - the number of correct edges.
      twoCycFn - the number of false negatives.
      twoCycFp - the number of false positives.
  • Method Details

    • toString

      public String toString()
      Returns a string representation of this object.
      Overrides:
      toString in class Object
      Returns:
      a string representation of this object.