~ubuntu-branches/ubuntu/utopic/blitz++/utopic

« back to all changes in this revision

Viewing changes to benchmarks/loop18f90.f90

  • Committer: Package Import Robot
  • Author(s): Christophe Trophime
  • Date: 2012-07-06 09:15:30 UTC
  • mfrom: (11.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20120706091530-vzrb8zf0vpbf8tp9
Tags: 1:0.10-1
* New upstream release
  Closes: #679407
* debian/rules:
  - update for new release
  - add override_dh_auto_test target
  - regenerate configure and Makefile.am
* debian/control:
  - add libtool, automake to BuildDepends
* debian/libblitz-doc.install
  - modify path for html files
* remove uneeded patches
* add examples.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
1
2
      SUBROUTINE loop18_F90(N, x, a, b, u, v)
2
3
      INTEGER i, N
3
4
      REAL*8 x(N), a(N), b(N), u, v
4
5
 
5
 
      x=(u+a)*(v+b)
 
6
      x = (u+a)*(v+b)
6
7
      RETURN
7
8
      END
8
9