2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

removed old test

This commit is contained in:
mzhelyez
2025-08-16 15:04:15 +02:00
parent 94a1a929f5
commit 6bae05e75b

View File

@@ -1,17 +0,0 @@
#include "autodiff.hpp"
#include<iostream>
using namespace boost::math::differentiation;
double myabs(double x)
{
return (x>0) - (x<0);
}
int main()
{
float y = -0.26647448539733887;
float z = 0.8725948333740234;
float w = abs(y);
std::cout<<w<<std::endl;
return 0;
}