kthohr / mcmc

A C++ library of Markov Chain Monte Carlo (MCMC) methods
https://mcmclib.readthedocs.io/en/latest/
Apache License 2.0
166 stars 45 forks source link

3rd include file path should be change #13

Open cxwx opened 2 months ago

cxwx commented 2 months ago

after installing mcmclib

include/mcmc/misc/mcmc_options.hpp:208:10: fatal error: 'BaseMatrixOps/include/BaseMatrixOps.hpp' file not found

so I must add include path "mcmc/"

-I/path/to/mcmc/include/mcmc/

I thought the line

#include "BaseMatrixOps/include/BaseMatrixOps.hpp"

should better be

#include "mcmc/BaseMatrixOps/include/BaseMatrixOps.hpp"