Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make bind atributes private (we don't want users to mess with it)
[simgrid.git] / org / simgrid / msg / RngStream.java
index b1b0c9d..8ab1ac2 100644 (file)
@@ -16,7 +16,7 @@ public class RngStream {
        /**
         * Represents the bind between the RngStream java object and the C object.
         */
-       public long bind;
+       private long bind;
        /**
         * Creates and returns a new stream without identifier. 
         * This procedure reserves space to keep the information relative to
@@ -76,7 +76,7 @@ public class RngStream {
         */
        public native void resetNextSubstream();
        /**
-        * If a = true the stream g will start generating antithetic variates, i.e., 1  U instead of U , until
+        * If a = true the stream g will start generating antithetic variates, i.e., 1 - U instead of U , until
         *  this method is called again with a = false.
         */
        public native void setAntithetic(boolean a);