comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/NodePath.java @ 108:69bbf08894aa

move
author one
date Fri, 12 Sep 2014 21:53:52 +0900
parents 95000ff9064d
children 6e9a8d26e0cf
comparison
equal deleted inserted replaced
106:3e75124550e9 108:69bbf08894aa
2 2
3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Pair; 3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Pair;
4 4
5 public interface NodePath extends Iterable<Integer> 5 public interface NodePath extends Iterable<Integer>
6 { 6 {
7 public NodePath add(int _pos); 7 public NodePath add(int pos);
8 public Pair<Integer,NodePath> pop(); 8 public Pair<Integer,NodePath> pop();
9 public NodePath tail(); 9 public NodePath tail();
10 public int size(); 10 public int size();
11 } 11 }