Is there an easy way to prepare Fortran code for parallel invocation
问题 I want to solve multiple large ODE systems in a C++ program in parallel using OpenMP. For certain reasons I need to use an ODE solver for which I could only find a Fortran 90 subroutine, and the code is too large to simply translate it to C. I know that Fortran uses static memory extensively and that I therefore have to prime the code for parallel invocations; but I am not really familiar with the language so: Is there a standard (automated) solution for my problem? Which parts of the code do