Under Original/Normal_Java/ one would find the original Labyrinth project ported...
[IRC.git] / Robust / src / Benchmarks / Java-Single / Labyrinth / mlp / rBlocked / CoordPathWrapper.java
1
2 public class CoordPathWrapper {
3         Pair coordinatePair;
4         Vector_t thePath;
5
6         public CoordPathWrapper(Pair coordinatePairPtr, Vector_t path) {
7                 coordinatePair = coordinatePairPtr;
8                 thePath = path;
9                         
10         }
11
12 }