Skip to content

Commit

Permalink
Added missing object registry.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Dias Pinto Vitenti committed Aug 17, 2021
1 parent 38497b8 commit 973c631
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion numcosmo/math/ncm_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
#include "math/ncm_stats_dist1d_spline.h"
#include "math/ncm_dataset.h"
#include "math/ncm_fit.h"
#include "math/ncm_fit_gsl_ls.h"
#include "math/ncm_fit_gsl_mm.h"
#include "math/ncm_fit_gsl_mms.h"
#include "math/ncm_fit_nlopt.h"
#include "math/ncm_prior_gauss_param.h"
#include "math/ncm_prior_gauss_func.h"
Expand Down Expand Up @@ -526,7 +529,11 @@ ncm_cfg_init_full_ptr (gint *argc, gchar ***argv)
ncm_cfg_register_obj (NCM_TYPE_DATA_FUNNEL);

ncm_cfg_register_obj (NCM_TYPE_FIT);


ncm_cfg_register_obj (NCM_TYPE_FIT_GSL_LS);
ncm_cfg_register_obj (NCM_TYPE_FIT_GSL_MM);
ncm_cfg_register_obj (NCM_TYPE_FIT_GSL_MMS);

#ifdef NUMCOSMO_HAVE_NLOPT
ncm_cfg_register_obj (NCM_TYPE_FIT_NLOPT);
#endif /* NUMCOSMO_HAVE_NLOPT */
Expand Down

0 comments on commit 973c631

Please sign in to comment.