flintlib / flint

FLINT (Fast Library for Number Theory)

Home Page:http://www.flintlib.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Move all inlines to one single file

albinahlback opened this issue · comments

Such as

#define FLINT_INLINES_C
#include "flint.h"
#undef FLINT_INLINES_C
...
#define FMPQ_INLINES_C
#include "fmpq.h"
#undef FMPQ_INLINES_C
...

Why? You will have a big file that needs to be recompiled every time any header file changes.

Yeah. Bad idea.