Advertisement
Guest User

TestFunction.h

a guest
Dec 17th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #ifndef TESTFUNCTION_H
  2. #define TESTFUNCTION_H
  3.  
  4. #include "Function.h"
  5. #include "Differentiator.h"
  6. #include "Integrator.h"
  7. #include "CUnit.h"
  8. #include <math.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11.  
  12. void print(int size, double x[], double fx[], double fdx[], double fix[],
  13.         int diffCalls, int intCalls);
  14.  
  15. double sq2(double x);
  16.  
  17. int modul_aTest(int argc, char** args);
  18. int modul_bTest(int argc, char** argv);
  19. int modul_cTest(int argc, char** argv);
  20. int modul_dTest(int argc, char** argv);
  21.  
  22. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement