AlphaFold3 / weight /_dep /eigen /failtest /swap_2.cpp
wuxing0105's picture
Add files using upload-large-folder tool
f499a53 verified
Raw
History Blame Contribute Delete
211 Bytes
#include "../Eigen/Core"
using namespace Eigen;
int main()
{
VectorXf a(10), b(10);
VectorXf const &ac(a);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
b.swap(ac);
#else
b.swap(ac.const_cast_derived());
#endif
}