Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. /**
  2. *
  3. */
  4. package com.aegean.ccsl;
  5.  
  6. import java.text.DecimalFormat;
  7. import java.util.ArrayList;
  8. import java.util.Comparator;
  9. import java.util.List;
  10. import java.util.Random;
  11. import java.util.Scanner;
  12.  
  13. import org.apache.log4j.Logger;
  14.  
  15.  
  16. /**
  17. * @author steve
  18. *
  19. */
  20. public class Main {
  21. private static final Logger LOG = Logger.getLogger(Main.class);
  22.  
  23. //Lists and parameters declaration
  24. private static List<IotDevice> iot_list = new ArrayList<IotDevice>();
  25. private static List<Cluster> cluster_list = new ArrayList<Cluster>();
  26. private static List<Double> rate_list = new ArrayList<Double>();
  27.  
  28. private static int M, Bt, P, No, cell, fc, min_d, f, F;
  29. private static double B, h;
  30. private static int h_mobile, h_base;
  31.  
  32. private static final DecimalFormat df = new DecimalFormat(".##");
  33.  
  34. /**
  35. * Main method.
  36. */
  37. public static void main(String[] args) {
  38. System.out.println("Hello");
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement