Skip to content

Commit

Permalink
fixed files form Math #12
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent 2a7c2a2 commit 715ee3d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/
package org.apache.commons.math3.random;

import java.io.Serializable;

import org.apache.commons.math3.exception.NotStrictlyPositiveException;
import org.apache.commons.math3.util.FastMath;
Expand All @@ -26,8 +27,10 @@
* @since 2.0
*/
public abstract class BitsStreamGenerator
implements RandomGenerator {
implements RandomGenerator,
Serializable {
/** Serializable version identifier */
private static final long serialVersionUID = 20130104L;
/** Next gaussian. */
private double nextGaussian;

Expand Down

0 comments on commit 715ee3d

Please sign in to comment.