stable mlp version
[IRC.git] / Robust / src / Benchmarks / mlp / directto / mlp-java / Track.java
index 04f9c16fb6b54ba1354a43516b65b67f731da88f..23642cfc96bdc9ebeaa14267edba8a61d2c1469e 100755 (executable)
@@ -1,6 +1,6 @@
 // the data about a plane - current position and velocity
 
-class Track {
+public class Track {
   Point4d pos;
   Velocity vel;
 
@@ -18,6 +18,6 @@ class Track {
   }
   
   public void printInfo() {
-    System.out.println("track: "+pos+"||"+vel);
+    //System.out.println("track: "+pos+"||"+vel);
   }
 }