c++ Programming Glossary: simulations
Use std::initializer_list in Visual C++ Compiler November 2012 CTP http://stackoverflow.com/questions/14559761/use-stdinitializer-list-in-visual-c-compiler-november-2012-ctp
Conversion of Fortran 77 code to C++ http://stackoverflow.com/questions/275458/conversion-of-fortran-77-code-to-c physics models built by different teams for really large simulations but you might find it useful for transitioning your code too...
Generate random numbers uniformly over an entire range http://stackoverflow.com/questions/288739/generate-random-numbers-uniformly-over-an-entire-range guaranteed to have a the quality required for statistical simulations. It is OK for numbers to look random to a human but for a serious..
Multithreaded job queue manager http://stackoverflow.com/questions/565137/multithreaded-job-queue-manager different parameters and options to a model multiple simulations are run in the background and results displayed as they complete.. as the user is still editing values. Since the multiple simulations take variable time some are milliseconds some take 5 seconds.. computations so at any time I may have 10 different simulations running. Somesimulations have multiple parts which have dependencies..
Deterministic random number generator tied to instance (thread independent) http://stackoverflow.com/questions/6467585/deterministic-random-number-generator-tied-to-instance-thread-independent numbers in a simulation. However when running multiple simulations at once on separate threads the individual sequence gets muddled..
Embed XNA in WinForms http://stackoverflow.com/questions/6558132/embed-xna-in-winforms interface of the game for more interactive dynamic simulations. c# c winforms xna uicomponents share improve this question..
|