~ubuntu-branches/ubuntu/raring/rheolef/raring-proposed

« back to all changes in this revision

Viewing changes to nfem/lib/geo-gmsh.cc

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
    case 'T' : gmsh_type =  4; break;
89
89
    case 'P' : gmsh_type =  6; break;
90
90
    case 'H' : gmsh_type =  5; break;
91
 
    default: error_macro ("unexpected "<<K.type()<<" element type");
 
91
    default: error_macro ("unexpected "<<K.variant()<<" element type");
92
92
  }
93
93
  s << idx << " " << gmsh_type << " "
94
94
    << " 3 " << dom_idx << " " << dom_idx << " 0";
236
236
        continue;
237
237
      }
238
238
      _count_geo    [Ki.dimension()]++;
239
 
      _count_element[Ki.type()]++;
 
239
      _count_element[Ki.variant()]++;
240
240
      K_idx++;
241
241
  }
242
242
  resize(K_idx);