IBaseData.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.data.experiment.extdata;
00002
00003 public interface IBaseData {
00004
00005
00006
00007
00008
00009 public int getHeaderSize();
00010
00011
00012
00013
00014
00015 public String []getListOfRanks();
00016
00017
00018
00019
00020
00021 public int getNumberOfRanks();
00022
00027 public int getFirstIncluded();
00028 public int getLastIncluded();
00030 public boolean isDenseBetweenFirstAndLast();
00031
00035 public boolean isHybridRank();
00036
00037
00038
00039 public void dispose();
00040 }