Files
secondo/Algebras/RegionInterpolation2/librip/lib/poly.h
2026-01-23 17:03:45 +08:00

19 lines
241 B
C

/*
poly.h
This is a meta-includefile which includes the required file for
the chosen implementation.
*/
#ifndef _POLY_H
#define _POLY_H
#ifdef POLYBOOST
# include "poly_boost.h"
#else
# include "poly_mathphys.h"
#endif
#endif