public static void deinit() {
clearAll();
}
public static void init(String filename) {
new CompressedDataReader(filename) {
public void read(DataInputStream stream) throws IOException {
//initializing the nodes
int count = stream.readInt();
nodes = new HashMap<String, PathNode>(count);
blockNodes.clear();