/* * Title: CloudSim Toolkit * Description: CloudSim (Cloud Simulation) Toolkit for Modeling and Simulation of Clouds * Licence: GPL - http://www.gnu.org/copyleft/gpl.html * * Copyright (c) 2009-2012, The University of Melbourne, Australia */ package org.cloudbus.cloudsim.distributions; /** * Interface to be implemented by a random number generator. * * @author Marcos Dias de Assuncao * @since CloudSim Toolkit 1.0 */ public interface ContinuousDistribution { /** * Sample the random number generator. * * @return The sample */ double sample(); }