~ubuntu-branches/ubuntu/saucy/rheolef/saucy

« back to all changes in this revision

Viewing changes to nfem/tst/form_mass_tst.sh

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-03-23 11:14:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110323111426-cjvhey7lxt6077ty
Tags: 5.93-1
* New upstream release (minor changes):
  - some extra warning message deleted in heap_allocator
  - graphic output with mayavi2 fixed
  - add doc refman in .info and .pdf format

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  2) input="${GEODIR}/carre-v2";;
43
43
  3) input="${GEODIR}/cube-tetra-1";;
44
44
  esac
45
 
  for approx in P0 P1 P2; do
 
45
  for approx in P0 P1 P1d P2 P2d; do
46
46
    case $approx in
47
 
      P0 | P1) case $d in
 
47
      P0 | P1 | P1d) case $d in
48
48
         1) L="1 x";;
49
49
         2) L="1 x y";;
50
50
         3) L="1 x y z";;
51
51
         esac;;
52
 
      P2) case $d in
 
52
      P2 | P2d) case $d in
53
53
         1) L="1 x x2";;
54
54
         2) L="1 x x2 y xy y2";;
55
55
         3) L="1 x x2 y xy y2 xz yz z2";;