This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#define PRECISION "10" | |
typedef struct __point point; | |
typedef struct __circle circle; | |
struct __point |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <ios> | |
#include <vector> | |
#include <algorithm> | |
#include <cmath> | |
#include <utility> | |
#include <tuple> | |
#define EIGEN_DONT_VECTORIZE | |
#define EIGEN_FAST_MATH 0 |