mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-07 16:51:13 +00:00
12 lines
238 B
C++
12 lines
238 B
C++
#ifndef COSMO_GROWTH_FACTOR_HPP
|
|
#define COSMO_GROWTH_FACTOR_HPP
|
|
|
|
#include "interpolate.hpp"
|
|
|
|
namespace CosmoTool
|
|
{
|
|
Interpolate buildLinearGrowth(double OmegaLambda, double OmegaMatter, double Hubble, int numPoints = 10000);
|
|
|
|
};
|
|
|
|
#endif
|