Example #1
0
 @Override
 public boolean writeData(String folder) {
   boolean success = true;
   success &= DataWriter.writeWithIndex(this.components, this.getKey() + "_COMPONENTS", folder);
   success &=
       DataWriter.writeWithIndex(
           this.componentsFraction, this.getKey() + "_COMPONENTS_FRACTION", folder);
   return success;
 }
Example #2
0
 @Override
 public boolean writeData(String folder) {
   boolean success = true;
   success &=
       DataWriter.writeWithIndex(
           this.dataItemsDistribution.getDistribution(),
           "DATA_STORAGE_METRIC_DATA_ITEM_DISTRIBUTION",
           folder);
   success &=
       DataWriter.writeWithIndex(
           this.dataItemsDistribution.getCdf(),
           "DATA_STORAGE_METRIC_DATA_ITEM_DISTRIBUTION_CDF",
           folder);
   return success;
 }
Example #3
0
 @Override
 public boolean writeData(String folder) {
   boolean success = true;
   success &=
       DataWriter.writeWithIndex(
           this.isolatedComponentSizeAvg, "FRAGMENTATION_ISOLATED_COMPONENT_SIZE_AVG", folder);
   success &=
       DataWriter.writeWithIndex(
           this.isolatedComponentSizeMax, "FRAGMENTATION_ISOLATED_COMPONENT_SIZE_MAX", folder);
   success &=
       DataWriter.writeWithIndex(
           this.isolatedComponentSizeMed, "FRAGMENTATION_ISOLATED_COMPONENT_SIZE_MED", folder);
   success &=
       DataWriter.writeWithIndex(
           this.isolatedComponentSizeMin, "FRAGMENTATION_ISOLATED_COMPONENT_SIZE_MIN", folder);
   success &=
       DataWriter.writeWithIndex(
           this.numberOfIsolatedComponents, "FRAGMENTATION_NUMBER_OF_ISOLATED_COMPONENTS", folder);
   success &=
       DataWriter.writeWithIndex(
           this.largestComponentSize, "FRAGMENTATION_LARGEST_COMPONENT_SIZE", folder);
   success &=
       DataWriter.writeWithIndex(
           this.largestComponentSizeFraction,
           "FRAGMENTATION_LARGEST_COMPONENT_SIZE_FRACTION",
           folder);
   return success;
 }
Example #4
0
 public boolean writeData(String folder) {
   DataWriter.writeWithIndex(this.lcc, "CC_LCC", folder);
   DataWriter.writeWithIndex(this.lccShort, "CC_LCC_SHORT", folder);
   return true;
 }