source: CIVL/examples/fortran/nek5000/verification/driver_gauss.f

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 247 bytes
Line 
1 PROGRAM DRIVERGAUSS
2 DIMENSION A(2,2),IR(2),IC(2)
3 N = 2
4 LDIM = 2
5
6 DO I=1,N
7 DO J=1,N
8 A(J,I) = I*10+J
9 END DO
10 END DO
11 CALL LU(A,LDIM,N,IR,IC)
12
13 END PROGRAM DRIVERGAUSS
Note: See TracBrowser for help on using the repository browser.