Changeset 3210
- Timestamp:
- Aug 28, 2018 7:31:13 AM (6 years ago)
- Location:
- palm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmbuild
r3208 r3210 27 27 # ----------------- 28 28 # $Id$ 29 # Bugfix: agent_preprocessing stays in MAKE_DEPOSITORY after compilation 30 # 31 # 3208 2018-08-27 13:10:50Z sward 29 32 # Added building of agent_preprocessing 30 33 # … … 568 571 fi 569 572 fi 570 mv agent_preprocessing $source_path/../SCRIPTS/.571 572 573 573 574 # NOW COMPILE THE PALM CODE -
palm/trunk/UTIL/agent_preprocessing/agent_preprocessing.f90
r3208 r3210 25 25 ! -----------------! 26 26 ! $Id$ 27 ! Bugfix: changed intrinsic SIZEOF to STORAGE_SIZE 28 ! 29 ! 3208 2018-08-27 13:10:50Z sward 27 30 ! Renamed nav_mesh to agent_preprocessing, adapted terminal output 28 31 ! … … 2506 2509 t_end-t_start,' seconds' 2507 2510 WRITE(*,'(2(6X,A,X,F12.3,X,A,/))') 'Size of Mesh data on disk: ', & 2508 S IZEOF(mesh)/1048576.,"MB", &2511 STORAGE_SIZE(mesh)/(8*1048576.),"MB", & 2509 2512 'Size of Polygon data on disk:', & 2510 S IZEOF(polygons)/1048576.,"MB"2513 STORAGE_SIZE(polygons)/(8*1048576.),"MB" 2511 2514 END SUBROUTINE create_nav_mesh 2512 2515
Note: See TracChangeset
for help on using the changeset viewer.