view src/alice/test/topology/fish/RoutingTable.java @ 35:ac3b48c5f4da

share width each other with tree
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 20 Jan 2012 04:00:12 +0900
parents
children
line wrap: on
line source

package alice.test.topology.fish;

import java.util.ArrayList;
import java.util.List;

import org.msgpack.annotation.Message;

@Message
public class RoutingTable {

	int sumWidth = 0;
	List<Routing> table = new ArrayList<Routing>();
	
}