test_PER.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2007 Regents of the SIGNET lab, University of Padova.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. Neither the name of the University of Padova (SIGNET lab) nor the 
  14.  *    names of its contributors may be used to endorse or promote products 
  15.  *    derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
  18.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 
  19.  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
  20.  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 
  21.  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
  22.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
  23.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
  24.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  25.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
  26.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
  27.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  */
  29. #include <iostream>
  30. #include <mac.h>
  31. #include"mac-802_11mr.h"
  32. #include "PER.h"
  33. using namespace std;
  34. #define ABS(x) (((x)>=0) ? (x) : (-x) )
  35. int main(int argc, char *argv[])
  36. {
  37. PER* per = new PER;
  38.  if (per==NULL)
  39.    {
  40.      printf("Memory error!n");
  41.  fflush(stdout);
  42.      exit(1);
  43.    }
  44.  printf("aliven");
  45.  fflush(stdout);
  46.  
  47. per->set_per(Mode1Mb,20,1,0.4);
  48. per->set_per(Mode1Mb,20,2,0.2);
  49. per->set_per(Mode1Mb,10,1,0.2);
  50. per->set_per(Mode1Mb,5,1,1);
  51. per->set_per(Mode1Mb,5,1,1);
  52. per->set_per(Mode2Mb,10,7,3);
  53. per->set_per(Mode2Mb,10,6,3);
  54. per->set_per(Mode2Mb,10,5,3);
  55. per->set_per(Mode2Mb,10,4,3);
  56. per->set_per(Mode2Mb,10,3,3);
  57. per->set_per(Mode2Mb,10,2,1);
  58. per->set_per(Mode2Mb,10,1,2);
  59. per->set_per(Mode5_5Mb,10,1,1);
  60. per->set_per(Mode5_5Mb,10,1,2);
  61. per->set_per(Mode5_5Mb,10,1,3);
  62. per->set_per(Mode5_5Mb,10,1,7);
  63. per->set_per(Mode5_5Mb,10,1,6);
  64. per->set_per(Mode5_5Mb,10,1,5);
  65. per->set_per(Mode5_5Mb,10,1,4);
  66. /* Comparing values obtained from PER module 
  67.  * with hand-calculated interpolation 
  68.  * of data specified above
  69.  */
  70.  if (( ABS(per->get_per(Mode1Mb,20,1.5) - 0.3)  > 1e-10)
  71.      && ( ABS(per->get_per(Mode1Mb,20,1.5) - 0.3)  > 1e-10)
  72.      && ( ABS(per->get_per(Mode1Mb,15,1) - 0.3)  > 1e-10)  )
  73.    exit(0);
  74.  else
  75.    exit(1);  /* Test failed! */ 
  76. };