Merge pull request #1169 from paulromano/cpp-tracking

Translate transport, cross_surface, and particle restarts to C++
This commit is contained in:
Sterling Harper 2019-02-20 12:17:19 -05:00 committed by GitHub
commit ef2767a127
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
61 changed files with 1001 additions and 3600 deletions

View file

@ -65,7 +65,7 @@ void title()
" ############### %%%%%%%%%%%%%%%%\n" <<
" ############ %%%%%%%%%%%%%%%\n" <<
" ######## %%%%%%%%%%%%%%\n" <<
" %%%%%%%%%%%\n";
" %%%%%%%%%%%\n\n";
// Write version information
std::cout <<
@ -88,7 +88,7 @@ void title()
#ifdef _OPENMP
// Write number of OpenMP threads
std::cout << " OpenMC Threads | " << omp_get_max_threads() << '\n';
std::cout << " OpenMP Threads | " << omp_get_max_threads() << '\n';
#endif
std::cout << '\n';
}