Changeset 65 for sources/src/sc_main.cc
- Timestamp:
- Oct 23, 2019, 12:53:07 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sources/src/sc_main.cc
r63 r65 35 35 */ 36 36 37 #include <sstream> 37 #include <cassert> 38 #include <cstring> // strcmp 38 39 #include <list> 39 40 #ifdef _OPENMP … … 41 42 #endif 42 43 #include <set> 43 #include <cstring> // strcmp 44 #include <cassert> 44 #include <sstream> 45 45 46 46 #include "internal.h" … … 91 91 92 92 #ifdef _OPENMP 93 bool use_openmp = true;93 const bool use_openmp = true; 94 94 #else 95 bool use_openmp = false;95 const bool use_openmp = false; 96 96 #endif 97 97 … … 395 395 } 396 396 397 398 //free(pending_write_vector);399 close_systemcass();397 int ret = sc_main(argc, argv); 398 // free (pending_write_vector); 399 close_systemcass (); 400 400 401 401 if (have_to_stop) {
Note: See TracChangeset
for help on using the changeset viewer.