我正在使用在 Armadillo 线性代数库之上运行的 mlpack 库。引用 debug.hpp 文件中的行引发了异常,如下所示:
//! if state is true, abort program
template<typename T1>
arma_hot
inline
void
arma_check(const bool state, const T1& x)
{
if(state) { arma_stop_logic_error(arma_str::str_wrapper(x)); }
}
随着消息:
Exception thrown at 0x00007FFFEEC912DE (vcruntime140.dll) in tutorial.exe: 0xC0000005: Access violation reading location 0x0000019B35203060.
关于如何阅读此错误消息以及我能做些什么的任何建议?谢谢。