Problem trivialmaths
User PlayVoltz
Submission Time 2023-10-12 20:01:46
Score 0
Max Time N/A
Max Memory N/A

Compile Error

trivialmaths.cpp: In function ‘float log_e(float)’:
trivialmaths.cpp:25:17: error: ‘SQRTH’ was not declared in this scope; did you mean ‘M_SQRT2’?
25 | if( x < SQRTH )
| ^~~~~
| M_SQRT2
trivialmaths.cpp:41:34: error: ‘R’ was not declared in this scope
41 | z = x * ( z * polevl( z, R, 2 ) / p1evl( z, S, 3 ) );
| ^
trivialmaths.cpp:41:23: error: ‘polevl’ was not declared in this scope
41 | z = x * ( z * polevl( z, R, 2 ) / p1evl( z, S, 3 ) );
| ^~~~~~
trivialmaths.cpp:41:53: error: ‘S’ was not declared in this scope
41 | z = x * ( z * polevl( z, R, 2 ) / p1evl( z, S, 3 ) );
| ^
trivialmaths.cpp:41:43: error: ‘p1evl’ was not declared in this scope
41 | z = x * ( z * polevl( z, R, 2 ) / p1evl( z, S, 3 ) );
|