public String toString()

in src/main/java/com/twitter/sbf/app/Config.java [176:192]


  public String toString() {
    return String.join(
        "\n",
        ImmutableList.of(
            "metisFile = " + metisFile,
            "initFromRowsFile = " + initFromRowsFile,
            "initFromColsFile = " + initFromColsFile,
            "initFromRandomNeighborhoods = " + initFromRandomNeighborhoods,
            "initFromBestNeighborhood = " + initFromBestNeighborhood,
            "outputByRowsFile = " + outputByRowsFile,
            "outputByColsFile = " + outputByColsFile,
            "clusterPrecisionFile = " + clusterPrecisionFile,
            "outputRowsWithScoresFile = " + outputRowsWithScoresFile,
            algoConfig.toString()
        )
    );
  }