Labyrinth benchmakr
[IRC.git] / Robust / src / Benchmarks / SingleTM / Labyrinth / Point.java
1
2   public class Point {
3         int x;
4         int y;
5         int z;
6         int value;
7         int momentum;
8         
9         public Point(int x,int y, int z,int value, int m) {
10             this.x = x;
11             this.y = y;
12             this.z = z;
13             this.value = value;
14             momentum = m;
15         }
16     }
17