Ignore:
Timestamp:
Jul 5, 2021, 3:17:12 PM (3 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
11ad42f, e84ab3d
Parents:
b7763da
Message:

Added duration information (in nanoseconds) to EHM benchmarks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/andrew_beach_MMath/code/CrossFinally.java

    rb7763da ree23a8d  
    99                }
    1010
     11                long startTime = System.nanoTime();
    1112                for (int count = 0 ; count < times ; ++count) {
    1213                        try {
     
    1617                        }
    1718                }
     19                long endTime = System.nanoTime();
     20                System.out.println("Run-Time (ns) " + (endTime - startTime));
    1821        }
    1922}
Note: See TracChangeset for help on using the changeset viewer.