~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to dolfin/adaptivity/LocalAssembler.h

  • Committer: corrado maurini
  • Date: 2012-12-18 12:16:08 UTC
  • mfrom: (6685.78.207 trunk)
  • Revision ID: corrado.maurini@upmc.fr-20121218121608-nk82ly9jgsld9u84
updating with trunk, fix uint in TAO solver and hacking the check for tao FindTAO.cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    static void assemble(arma::Mat<double>& A,
49
49
                         UFC& ufc,
50
50
                         const Cell& cell,
51
 
                         const MeshFunction<uint>* cell_domains,
52
 
                         const MeshFunction<uint>* exterior_facet_domains,
53
 
                         const MeshFunction<uint>* interior_facet_domains);
 
51
                         const MeshFunction<std::size_t>* cell_domains,
 
52
                         const MeshFunction<std::size_t>* exterior_facet_domains,
 
53
                         const MeshFunction<std::size_t>* interior_facet_domains);
54
54
 
55
55
    ///
56
56
    static void assemble_cell(arma::Mat<double>& A,
57
57
                              UFC& ufc,
58
58
                              const Cell& cell,
59
 
                              const MeshFunction<uint>* domains);
 
59
                              const MeshFunction<std::size_t>* domains);
60
60
 
61
61
    ///
62
62
    static void assemble_exterior_facet(arma::Mat<double>& A,
63
63
                                        UFC& ufc,
64
64
                                        const Cell& cell,
65
65
                                        const Facet& facet,
66
 
                                        const uint local_facet,
67
 
                                        const MeshFunction<uint>* domains);
 
66
                                        const std::size_t local_facet,
 
67
                                        const MeshFunction<std::size_t>* domains);
68
68
 
69
69
    ///
70
70
    static void assemble_interior_facet(arma::Mat<double>& A,
71
71
                                        UFC& ufc,
72
72
                                        const Cell& cell,
73
73
                                        const Facet& facet,
74
 
                                        const uint local_facet,
75
 
                                        const MeshFunction<uint>* domains);
 
74
                                        const std::size_t local_facet,
 
75
                                        const MeshFunction<std::size_t>* domains);
76
76
  };
77
77
 
78
78
}