package org.cloudbus.cloudsim.examples.power.random; /** * If you are using any algorithms, policies or workload included in the power package please cite * the following paper: * * Anton Beloglazov, and Rajkumar Buyya, "Optimal Online Deterministic Algorithms and Adaptive * Heuristics for Energy and Performance Efficient Dynamic Consolidation of Virtual Machines in * Cloud Data Centers", Concurrency and Computation: Practice and Experience (CCPE), Volume 24, * Issue 13, Pages: 1397-1420, John Wiley & Sons, Ltd, New York, USA, 2012 * * @author Anton Beloglazov * @since Jan 5, 2012 */ public class RandomConstants { public final static int NUMBER_OF_VMS = 50; public final static int NUMBER_OF_HOSTS = 50; public final static long CLOUDLET_UTILIZATION_SEED = 1; }