14 lines
152 B
C
14 lines
152 B
C
#ifndef TSP_H
|
|
# define TSP_H
|
|
|
|
# include <stdio.h>
|
|
# include <stdlib.h>
|
|
# include <math.h>
|
|
|
|
typedef struct s_city
|
|
{
|
|
float x;
|
|
float y;
|
|
} t_city;
|
|
|
|
#endif |