
This PR aims to add the groundwork to test the precision of libc complex functions against MPC. I took `cargf` as a test to verify that the infra works fine.
9 lines
93 B
C++
9 lines
93 B
C++
#include <mpc.h>
|
|
|
|
int main() {
|
|
mpc_t x;
|
|
mpc_init2(x, 256);
|
|
mpc_clear(x);
|
|
return 0;
|
|
}
|