Changeset 3fbbfbb for timer.F90


Ignore:
Timestamp:
06/16/10 08:25:47 (14 years ago)
Author:
Jan Meinke <j.meinke@…>
Branches:
master
Children:
5fef0d7
Parents:
9f146fa
Message:

Move to doxygen comments and smmp_p.

Doxygen comments in Fortran are !> ... !! ... !<. I'm planning move the API documentation from the
lyx file into the code. This should make it easier to get documentation for all the common block
variables as well.

Use import smmp_p to indicate the parallel version of the Python bindings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • timer.F90

    r9f146fa r3fbbfbb  
    5959            ! Initialize timers
    6060            allocate (timingData(initialTimerCount))
    61             forall(i = 1:initialTimerCount)
     61!            forall(i = 1:initialTimerCount)
     62            do i = 1, initialTimerCount
    6263                timingData(i) = TimingStructure(0, -1.0, -1.0, -1.0, -1.0, 0.0, &
    6364                        0.0, -1.0, -1.0)
    64             end forall
     65!            end forall
     66            end do
    6567        end subroutine init_timer
    6668   
Note: See TracChangeset for help on using the changeset viewer.