MathFunctions.h 123 B

123456789
  1. #pragma once
  2. #include <OpAdd.h>
  3. #include <OpMul.h>
  4. #include <OpSub.h>
  5. namespace mathfunctions {
  6. double sqrt(double x);
  7. }