Metrics constructor

Metrics(
  1. bool isAcyclic,
  2. List<String> firstCycle,
  3. int numNodes,
  4. int numEdges,
  5. double avgDegree,
  6. List<String> orphans,
  7. int ccd,
  8. double acd,
  9. double nccd,
  10. int totalSloc,
  11. double avgSloc,
)

Constructor.

Implementation

Metrics(
    this.isAcyclic,
    this.firstCycle,
    this.numNodes,
    this.numEdges,
    this.avgDegree,
    this.orphans,
    this.ccd,
    this.acd,
    this.nccd,
    this.totalSloc,
    this.avgSloc);