xlw 4.0
Sep 30
2009
2009
xlw 4.0 is out. I’ll have to work with it anyway, so, perhaps, I’ll share some of my experience.
xlw 4.0 is out. I’ll have to work with it anyway, so, perhaps, I’ll share some of my experience.
In my master thesis I described the application of classical Monte Carlo methods for the Heston Model. For the implementation one usually requires a very good Random Numbers Generator. Read the rest of this entry »
Hurgada 2005
Germany 2001-2005
Heidelberg 2001
#include <windows.h> HANDLE hLogFile; /** * enable memory leaks reporting * * @param file - file name */ void enableMemoryLeaksReporting(std::string file) { hLogFile = CreateFile(file.c_str(), GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_CHECK_CRT_DF |
_CRTDBG_LEAK_CHECK_DF);
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE); _CrtSetReportFile(_CRT_WARN, hLogFile); };
Comment