/* An actor that outputs a random sequence of booleans. Copyright (c) 1998-2007 The Regents of the University of California. All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. PT_COPYRIGHT_VERSION_2 COPYRIGHTENDKEY */ package ptolemy.actor.lib; import ptolemy.data.BooleanToken; import ptolemy.data.DoubleToken; import ptolemy.data.expr.Parameter; import ptolemy.data.type.BaseType; import ptolemy.kernel.CompositeEntity; import ptolemy.kernel.util.IllegalActionException; import ptolemy.kernel.util.NameDuplicationException; ////////////////////////////////////////////////////////////////////////// //// Bernoulli /** Produce a random sequence of booleans. The output is of type BooleanToken. The values that are generated are independent and identically distributed, where the probability of <i>true</i> is given by the parameter <i>trueProbability</i>. The seed can be specified as a parameter to control the sequence that is generated. This actor uses the class java.util.Random to generate random numbers. Note that if the parameters are changed during execution of the model, there is a one iteration delay before the changes take effect. @author Edward A. Lee @version $Id$ @since Ptolemy II 0.3 @Pt.ProposedRating Green (eal) @Pt.AcceptedRating Green (bilung) @see ptolemy.actor.lib.DiscreteRandomSource @see ptolemy.actor.lib.Rician @see ptolemy.actor.lib.Triangular @see ptolemy.actor.lib.Uniform */ public class Bernoulli extends RandomSource { /** Construct an actor with the given container and name. * @param container The container. * @param name The name of this actor. * @exception IllegalActionException If the actor cannot be contained * by the proposed container. * @exception NameDuplicationException If the container already has an * actor with this name. */ public Bernoulli(CompositeEntity container, String name) throws NameDuplicationException, IllegalActionException { super(container, name); output.setTypeEquals(BaseType.BOOLEAN); trueProbability = new Parameter(this, "trueProbability"); trueProbability.setExpression("0.5"); trueProbability.setTypeEquals(BaseType.DOUBLE); } /////////////////////////////////////////////////////////////////// //// ports and parameters //// /** The probability of <i>true</i>. * This parameter contains a DoubleToken, initially with value 0.5. */ public Parameter trueProbability; /////////////////////////////////////////////////////////////////// //// public methods //// /** Send a random boolean to the output. * This number is only changed in the prefire() method, so it will * remain constant throughout an iteration. * @exception IllegalActionException If calling send() or super.fire() * throws it. */ public void fire() throws IllegalActionException { super.fire(); output.send(0, new BooleanToken(_current)); } /////////////////////////////////////////////////////////////////// //// protected methods //// /** Generate a new random number. * @exception IllegalActionoException If parameter values are incorrect. */ protected void _generateRandomNumber() throws IllegalActionException { if (_random.nextDouble() < ((DoubleToken) (trueProbability.getToken())) .doubleValue()) { _current = true; } else { _current = false; } } /////////////////////////////////////////////////////////////////// //// private variables //// /** The random boolean for the current iteration. */ private boolean _current; }