Changeset 3210


Ignore:
Timestamp:
Aug 28, 2018 7:31:13 AM (6 years ago)
Author:
sward
Message:

Minor bugfix in agent_preprocessing

Location:
palm/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/palmbuild

    r3208 r3210  
    2727# -----------------
    2828# $Id$
     29# Bugfix: agent_preprocessing stays in MAKE_DEPOSITORY after compilation
     30#
     31# 3208 2018-08-27 13:10:50Z sward
    2932# Added building of agent_preprocessing
    3033#
     
    568571          fi
    569572       fi
    570        mv agent_preprocessing $source_path/../SCRIPTS/.
    571 
    572573
    573574          # NOW COMPILE THE PALM CODE
  • palm/trunk/UTIL/agent_preprocessing/agent_preprocessing.f90

    r3208 r3210  
    2525! -----------------!
    2626! $Id$
     27! Bugfix: changed intrinsic SIZEOF to STORAGE_SIZE
     28!
     29! 3208 2018-08-27 13:10:50Z sward
    2730! Renamed nav_mesh to agent_preprocessing, adapted terminal output
    2831!
     
    25062509                                 t_end-t_start,' seconds'
    25072510       WRITE(*,'(2(6X,A,X,F12.3,X,A,/))') 'Size of Mesh data on disk:   ',     &
    2508                                         SIZEOF(mesh)/1048576.,"MB",            &
     2511                                        STORAGE_SIZE(mesh)/(8*1048576.),"MB",            &
    25092512                                        'Size of Polygon data on disk:',       &
    2510                                         SIZEOF(polygons)/1048576.,"MB"
     2513                                        STORAGE_SIZE(polygons)/(8*1048576.),"MB"
    25112514    END SUBROUTINE create_nav_mesh
    25122515
Note: See TracChangeset for help on using the changeset viewer.