
21 Feb
2008
21 Feb
'08
12:51 p.m.
John, When I compile the following code on VC71 with the flag /arch:SSE2 I get an internal compiler error: c:\boost\include\boost-1_35\boost\math\tools\series.hpp(49) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\6030\vc\Compiler\Utc\src\P2\main.c', line 148) Without the SSE2 flag, the code compiles just fine. ---------- #include <boost/math/distributions/fisher_f.hpp> void f() { boost::math::fisher_f fd(3.0, 5.0); cdf(fd, 1.0); } --------- --Johan