Ignore:
Timestamp:
Sep 17, 2010, 3:07:01 PM (13 years ago)
Author:
steve
Message:

Updating logging and printing stats

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/generic_domain.py

    r8018 r8021  
    18741874    ##
    18751875    # @brief print_timestepping_statistics.
    1876     # Goes through all fractional step operators and logs timestepping statistics
     1876    # Goes through all fractional step operators and prints timestepping statistics
    18771877    def print_operator_timestepping_statistics(self):
    18781878        for operator in self.fractional_step_operators:
    18791879            operator.print_timestepping_statistics()
     1880
     1881    ##
     1882    # @brief print_operator_statistics.
     1883    # Goes through all fractional step operators and prints operator statistics
     1884    def print_operator_statistics(self):
     1885        for operator in self.fractional_step_operators:
     1886            operator.print_statistics()
    18801887
    18811888
Note: See TracChangeset for help on using the changeset viewer.