blob: ba01316130f8a1c3a8b0972fbd6bd9f6d1f96270 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef CALC_DISTANCE_H
#define CALC_DISTANCE_H
extern double calc_angular_distance(double z);
extern double calc_luminosity_distance(double z);
extern double E(double z);
#endif
//EOF
|