add simple test, and mv permutation test, update README

This commit is contained in:
2023-10-17 16:45:57 +02:00
parent 130c356d95
commit c91910a278
25 changed files with 3660 additions and 83 deletions
@@ -0,0 +1,21 @@
#ifndef __COORDINATE_C__H__
#define __COORDINATE_C__H__
#include "dimension/dimension.h"
struct coordinate
{
size_t lin_coo;
unsigned int *coord;
struct dimension *dimension;
};
typedef coordinate coordinate;
void LinearToCoord(struct coordinate *coor);
void CoordToLinear(struct coordinate *coor);
#endif